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
Left axis label vertical position
Left axis label vertical position
- Attachments
-
- v2014.12.gif (1015 Bytes) Viewed 7417 times
-
- v2012.07.gif (1.66 KiB) Viewed 7406 times
Re: Left axis label vertical position
Hello,
I've tried the following code in a new empty application:
In TeeChart v2014.12 indeed, the label looks a bit displaced:
But in the current internal sources, it looks correct again:
So I'd expect this to be fixed with the next maintenance release.
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;
But in the current internal sources, it looks correct again:
So I'd expect this to be fixed with the next maintenance release.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Left axis label vertical position
Ok, thank you for your reply.