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 2386 - Wrong position for vertical axes titles when exported to HTML5
Summary: Wrong position for vertical axes titles when exported to HTML5
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Export (show other bugs)
Version: 30.200525
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: yeray alonso
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-11-10 07:55 EST by yeray alonso
Modified: 2020-11-10 07:55 EST (History)
1 user (show)

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description yeray alonso 2020-11-10 07:55:38 EST
Here a simple example:

const fileName='test';
begin
  Chart1.Axes.Left.Title.Text:='Left axis title';
  Chart1.Axes.Right.Title.Text:='Right axis title';

  with Chart1.AddSeries(TLineSeries) do
  begin
    FillSampleValues;
    VertAxis:=aBothVertAxis;
  end;

  TeeSaveToHTML5File(Chart1, fileName+'.html');
  TeeGoToURL(Handle, fileName+'.html');
end;