![]() | 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: | Assign chart doesn't copy individual axis items format | ||
|---|---|---|---|
| Product: | VCL TeeChart | Reporter: | yeray alonso <yeray> |
| Component: | Axis | Assignee: | yeray alonso <yeray> |
| Status: | RESOLVED FIXED | ||
| Severity: | enhancement | CC: | yeray |
| Priority: | --- | ||
| Version: | 33.210915 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
When you have a custom axis item/label with a custom format, that individual label format isn't correctly copied when you clone/assign the chart. Ie: Chart1.View3D:=False; Chart1.Legend.Hide; with Chart1.AddSeries(TLineSeries) do begin AddXY(0, 100); AddXY(100, 200); end; with Chart1.Axes.Left.Items.Add(150, 'My Label') do begin Format.Font.Color:=clRed; Format.Font.Size:=24; end; // Clone test CloneChart(Chart2, Chart1, Self, False); // Assign test {Chart2.Assign(Chart1); with Chart2.AddSeries(TLineSeries) do begin AddXY(0, 100); AddXY(100, 200); end;}