Left axis label vertical position

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
johnnix
Newbie
Newbie
Posts: 38
Joined: Thu Nov 28, 2013 12:00 am

Left axis label vertical position

Post by johnnix » Tue Nov 25, 2014 10:23 am

Hello,

I believe that with the latest 2014 version there has been a change in the starting position of the Y axis label. As you can see from the images in earlier versions the label was centered to the middle of the axis length but now it looks like it starts from that point.

Regards
Attachments
v2014.12.gif
v2014.12.gif (1015 Bytes) Viewed 6556 times
v2012.07.gif
v2012.07.gif (1.66 KiB) Viewed 6545 times

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

Re: Left axis label vertical position

Post by Yeray » Tue Nov 25, 2014 11:05 am

Hello,

I've tried the following code in a new empty application:

Code: Select all

uses Chart, Series, TeeConst, TeCanvas;

var Chart1: TChart;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Caption:=TeeMsg_Version;

  Chart1:=TChart.Create(Self);
  Chart1.Parent:=Self;
  Chart1.Align:=alClient;

  Chart1.View3D:=false;
  Chart1.AddSeries(TPointSeries);
  Chart1.Axes.Left.Title.Text:='Depth';

  Chart1.Canvas:=TTeeCanvas3D.Create;
end;
In TeeChart v2014.12 indeed, the label looks a bit displaced:
v2014.12.png
v2014.12.png (4.77 KiB) Viewed 6535 times
But in the current internal sources, it looks correct again:
v2014.13.141125.png
v2014.13.141125.png (4.69 KiB) Viewed 6543 times
So I'd expect this to be fixed with the next maintenance release.
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

johnnix
Newbie
Newbie
Posts: 38
Joined: Thu Nov 28, 2013 12:00 am

Re: Left axis label vertical position

Post by johnnix » Thu Nov 27, 2014 8:37 pm

Ok, thank you for your reply.

Post Reply