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 - Left axis labels inside the chart when rotated
Summary: Left axis labels inside the chart when rotated
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Axis (show other bugs)
Version: 29.200113
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-07-27 06:18 EDT by yeray alonso
Modified: 2020-07-27 06:18 EDT (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments
screenshot (75.45 KB, image/png)
2020-07-27 06:18 EDT, yeray alonso
Details

Note You need to log in before you can comment on or make changes to this bug.
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.