At development time the left axis name and the axis labels are properly separated, see Chart1.jpg.
At runtime the labels are longer and overlap the axisname as seen in Chart2.jpg.
I tried a lot of options but was not successfull.
If there a way to achieve a separation at runtime ?
Axis Title and Label overlaps
Axis Title and Label overlaps
- Attachments
-
- Runtime
- Chart2.JPG (11.74 KiB) Viewed 5070 times
-
- Development time
- Chart1.JPG (11.51 KiB) Viewed 5072 times
Re: Axis Title and Label overlaps
Hello,
I've tried to reproduce the problem without success; it seems to work fine for me with a similar length in the axis labels. Ie:
What TeeChart version are you using?
Could you please arrange a simple example project we can run as-is to reproduce the problem here?
I've tried to reproduce the problem without success; it seems to work fine for me with a similar length in the axis labels. Ie:
Code: Select all
uses Series;
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.View3D:=False;
Chart1.Legend.Visible:=False;
Chart1.AddSeries(TLineSeries);
Chart1.Axes.Left.Title.Text:='Left axis title';
Chart1.Axes.Left.SetMinMax(79000, 81000);
Chart1.Axes.Bottom.SetMinMax(33, 40);
end;
Could you please arrange a simple example project we can run as-is to reproduce the problem here?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |