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

Summary: Vertical axes title angle is not being serialized
Product: VCL TeeChart Reporter: narcís calvet <narcis>
Component: AxisAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: normal    
Priority: Normal    
Version: 140923   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=3&t=15360&p=68155#p68155
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: Example project showing the problem at design-time

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.