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 825

Summary: Axis Title Position displaced in v2013.09
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: AxisAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: enhancement    
Priority: ---    
Version: 131119   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=1&t=15022&p=66672#p66672
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: title displaced between v2013.08 and v2013.09

Description yeray alonso 2014-07-02 05:57:20 EDT
Created attachment 236 [details]
title displaced between v2013.08 and v2013.09

The change may have been intentional.
But in some cases this displacement isn't desired.
See the attached images, both obtained running the code below, one with v2013.08 and the other with v2013.09.

uses Series, TeCanvas, TeeBmpOptions;

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

  Chart1.Title.Clear;
  Chart1.View3D := False;

  Chart1.Legend.Visible := False;

  with Chart1.AddSeries(TLineSeries) do
  begin
    Add(50000);
    Add(0);
  end;

  Chart1.Axes.Left.Title.Caption := 'transactions / sec';

  Chart1.Canvas:=TTeeCanvas3D.Create;
  Chart1.Draw;

  TeeSaveToBitmap(Chart1, 'E:\\tmp\\testVCLbmp.bmp', Rect(0,0,373,115));
end;