Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 2355

Summary: Left axis labels inside the chart when rotated
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: AxisAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: enhancement CC: yeray
Priority: ---    
Version: 29.200113   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: screenshot

Description yeray alonso 2020-07-27 06:18:25 EDT
Created attachment 944 [details]
screenshot

Rotating a non-orthogonal chart, the left axis labels are drawn inside the Chart and they are difficult to read.

This appeared in TeeChart v2013.09 ans is still reproducible in v2020.30.

  Chart1.Aspect.Zoom:=70;
  Chart1.Chart3DPercent:=50;
  Chart1.Aspect.Rotation:=300;
  Chart1.Aspect.Orthogonal:=False;
  Chart1.Legend.Hide;
  Chart1.Axes.Bottom.Increment:=2;
  Chart1.Axes.Left.Increment:=0.2;
  Chart1.Axes.Bottom.LabelsFont.Size:=10;
  Chart1.Axes.Left.LabelsFont.Size:=10;
  Chart1.AddSeries(TSurfaceSeries).FillSampleValues;

See the screenshot attached.