![]() | 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: | Donut series chart displays values incorrectly (GDI rendering), v. 2017.23.171221 VCL | ||
|---|---|---|---|
| Product: | VCL TeeChart | Reporter: | trubetskov |
| Component: | Chart | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED WORKSFORME | ||
| Severity: | critical | CC: | marc, sandra, trubetskov |
| Priority: | High | ||
| Version: | 23.171221 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | Donut | Delphi / C++ Builder RAD IDE Version: | RAD 10.2 Tokyo |
| Attachments: | Screenshots of the demo with GDI+ ON and OFF | ||
|
Description
trubetskov
2018-01-02 08:44:08 EST
I cannot enter the most recent version number in Bugzilla! This selection is unavailable! Hello Michael, Could you attached a simple code because we can reproduce the problem? Also, would be helpful if you can attach images to see the different behaviour between versions. Thanks for your colaboration, Regards. Created attachment 815 [details]
Screenshots of the demo with GDI+ ON and OFF
I attached 2 screenshots from your demo. Please, pay special attention to GDI+ setting and 3D = OFF. When GDI+ = OFF, the transformation from Degrees to Radians is obviously applied one extra time!
Regards,
Michael
Hello Michael,
Many thanks for the information. Finally, we can reproduce the problem turning off the 3D View as you have indicated. I have added a simple code to reproduce in easy way the problem:
uses TeCanvas;
procedure TForm3.FormCreate(Sender: TObject);
begin
Chart1.View3D := false;
Series1.FillSampleValues(4);
gdi.Checked := True;
end;
procedure TForm3.GDIClick(Sender: TObject);
begin
if gdi.Checked then
Chart1.Canvas := TGDIPlusCanvas.Create
else
Chart1.Canvas:=TTeeCanvas3D.Create;
end;
This bug is not fixed in the new release v.2018.24.180321 Very strange and disappointing! -Michael Not reproducible in latest version. |