Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 809

Summary: Left axis Title is not correctly centred
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: AxisAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: minor CC: david.novo, johnnious
Priority: Lowest    
Version: 131119   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=3&t=15001
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2014-06-20 11:31:32 EDT
The left axis Title is not correctly centred in the middle of the axis from 2013.09.

uses Series;

var Chart1: TChart;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1:=TChart.Create(Self);
  Chart1.Parent:=Self;
  Chart1.Align:=alClient;

  Chart1.View3D:=false;
  Chart1.AddSeries(TLineSeries);

  Chart1.Axes.Left.Title.Caption:='Left axis';
end;