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 2444

Summary: left axis label doesn't get enough room when long format set
Product: VCL TeeChart Reporter: marc meumann <marc>
Component: AxisAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: normal CC: yeray
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description marc meumann 2021-06-29 10:34:49 EDT
Leftmost digit cut with default Axis settings.

Can reproduce with:
Chart1.Axes.Left.AxisValuesFormat := '#.##0,######';

for i := 0 to 2 do
Begin
  Series1.AddXY(i,0.633388);
End;

Workarounds:
grow Min Labelsize or left Margin:

Chart1.Axes.Left.LabelsSize := 45; //or calc label string size
Chart1.MarginLeft := 10;