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 1068 - Vertical axes title angle is not being serialized
Summary: Vertical axes title angle is not being serialized
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Axis (show other bugs)
Version: 140923
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-31 03:48 EST by narcís calvet
Modified: 2014-12-31 03:48 EST (History)
0 users

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


Attachments
Example project showing the problem at design-time (2.53 KB, application/x-zip-compressed)
2014-12-31 03:48 EST, narcís calvet
Details

Note You need to log in before you can comment on or make changes to this bug.
Description narcís calvet 2014-12-31 03:48:30 EST
Created attachment 371 [details]
Example project showing the problem at design-time

Horizontal axes titles are serialized but not vertical axes. You can not set them to anything different than the default value at design-time. The workaround is setting them at run-time:

  Chart1.Axes.Left.Title.Angle := 0;
  Chart1.Axes.Right.Title.Angle := 0;

Attached a project reproducing this.