![]() | Steema Issues DatabaseNote: 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. |
| Summary: | SubAxes of CustomAxes do not position correctly. | ||
|---|---|---|---|
| Product: | VCL TeeChart | Reporter: | christopher ireland <chris> |
| Component: | Axis | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | CONFIRMED --- | ||
| Severity: | normal | ||
| Priority: | High | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
Code to reproduce: procedure TForm1.InitializeChart; var tmpS : TBarSeries; subA, custA : TChartAxis; begin Chart1.View3D:=false; tmpS := TBarSeries(Chart1.AddSeries(TBarSeries)); tmpS.FillSampleValues(); custA:=Chart1.CustomAxes.Add; custA.Horizontal:=false; tmpS.CustomVertAxis:=custA; Chart1.MarginLeft:=10; subA:=custA.SubAxes.Add; subA.Increment:=500/3; end; The position of the SubAxes cannot be manually corrected thanks to: http://bugs.teechart.net/show_bug.cgi?id=1289