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 1977 - Polar series using a Dataset and ClockWiseLabels breaks the angles
Summary: Polar series using a Dataset and ClockWiseLabels breaks the angles
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: 23.171221
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
: 1971 (view as bug list)
Depends on:
Blocks:
 
Reported: 2018-01-25 06:47 EST by yeray alonso
Modified: 2018-02-23 10:20 EST (History)
1 user (show)

See Also:
Chart Series: Polar
Delphi / C++ Builder RAD IDE Version:


Attachments
test project (50.04 KB, application/x-zip-compressed)
2018-01-25 06:47 EST, yeray alonso
Details

Note You need to log in before you can comment on or make changes to this bug.
Description yeray alonso 2018-01-25 06:47:30 EST
Created attachment 806 [details]
test project

See the project attached.

- If you run it as-is (ClockWiseLabels=false at designtime) everything works as expected.

- If you check the ClockWise checkbox (at Series\Format\Labels\Options tab), both the circle labels and the series have rotated (which is correct). Now, when you run, you'll see the series has moved 180 degrees (which is wrong).

As a temporal workaround, you can reload the data making sure ClockWiseLabels=false and set it to true after it:

procedure TForm1.FormCreate(Sender: TObject);
begin
  Series1.ClockWiseLabels:=False;
  Series1.CheckDataSource;
  Series1.ClockWiseLabels:=True;
end;
Comment 1 sandra pazos 2018-02-23 10:20:10 EST
*** Bug 1971 has been marked as a duplicate of this bug. ***