![]() | 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: | Gauge Labels displaced to the right when Chart Title in Custom Position | ||
|---|---|---|---|
| Product: | VCL TeeChart | Reporter: | yeray alonso <yeray> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | enhancement | CC: | marc, yeray |
| Priority: | --- | ||
| Version: | 29.200113 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
The customer adds: The labels even with no custom position don't line up correctly with value tick lines as they move around, some line up perfectly others away from ticks |
Here the test code: procedure TForm1.CheckBox1Click(Sender: TObject); begin Chart1.Title.CustomPosition:=CheckBox1.Checked; end; procedure TForm1.FormCreate(Sender: TObject); begin with TGaugeSeries(Chart1.AddSeries(TGaugeSeries)) do begin LabelsInside:=False; TotalAngle:=180; RotationAngle:=180; Axis.Increment:=10; end; end;