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 - Axis Title Position displaced in v2013.09
Summary: Axis Title Position displaced in v2013.09
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Axis (show other bugs)
Version: 131119
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2014-07-02 05:57 EDT by yeray alonso
Modified: 2014-07-02 05:57 EDT (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments
title displaced between v2013.08 and v2013.09 (6.00 KB, application/octet-stream)
2014-07-02 05:57 EDT, yeray alonso
Details

Note You need to log in before you can comment on or make changes to this bug.
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;