45 deg angle bottom axis issue

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
MartinF
Newbie
Newbie
Posts: 1
Joined: Wed Jan 22, 2014 12:00 am

45 deg angle bottom axis issue

Post by MartinF » Tue Aug 19, 2014 5:33 pm

Hi

I was looking for a solution to this... http://codeverge.com/embarcadero.delphi ... om/1091037 so upgraded from 2013.9 Pro to 2014.11 Pro and it looks like the problem still exists.

Is there any estimate of a fix? If at all.

Thx
MartinF

PS a brief description "The problem is not limited to date formats. When LabelsAngle>0 (I tried 45, 60 90) the labels of bottomAxis will go thru the axis.
I get the impression that the margins and padding do not work at the bottom. With LabelsAngle=0 and two-line labels, the bottom row will touch the border whatever I try with the margins and padding."

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: 45 deg angle bottom axis issue

Post by Yeray » Wed Aug 20, 2014 9:59 am

Hi Martin,

The following code seems to work fine for me here with TeeChart v2014.11 and XE5:

Code: Select all

uses VCLTee.Series, VCLTee.TeeConst;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1.Title.Text.Text:=TeeMsg_Version;
  Chart1.View3D:=false;
  Chart1.AddSeries(TLineSeries).FillSampleValues;
  Chart1.Axes.Bottom.LabelsAngle:=90;
end;
2014-08-20_1155.png
2014-08-20_1155.png (30.56 KiB) Viewed 2944 times
Could you please try the project attached to see what gives for you?
Attachments
testLabelsAngle.zip
(1.57 KiB) Downloaded 325 times
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply