Page 1 of 1

Left axis label vertical position

Posted: Tue Nov 25, 2014 10:23 am
by 16567921
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

Re: Left axis label vertical position

Posted: Tue Nov 25, 2014 11:05 am
by yeray
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 7290 times
But in the current internal sources, it looks correct again:
v2014.13.141125.png
v2014.13.141125.png (4.69 KiB) Viewed 7298 times
So I'd expect this to be fixed with the next maintenance release.

Re: Left axis label vertical position

Posted: Thu Nov 27, 2014 8:37 pm
by 16567921
Ok, thank you for your reply.