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 1423 - Rotating two TPolarSeries only moves one
Summary: Rotating two TPolarSeries only moves one
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: 150901
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2016-01-29 10:42 EST by yeray alonso
Modified: 2016-01-29 10:42 EST (History)
0 users

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description yeray alonso 2016-01-29 10:42:18 EST
Having two TPolarSeries in a chart and a TTeeCommander, of you try to rotate the chart, only one of the series rotates.

Ie, put a TChart and a TTeeCommander on a form and use this code:

procedure TForm1.FormCreate(Sender: TObject);
var i: Integer;
begin
  with Chart1 do
  begin
    View3D := false;
    Chart3DPercent := 0;
    Gradient.Visible:=false;
    Title.Visible:=false;
    Legend.Visible:=false;
  end;

  for i:=0 to 1 do
    with Chart1.AddSeries(TPolarSeries) as TPolarSeries do
    begin
      FillSampleValues;
      Pointer.Visible:=false;
      Brush.Clear;
      Pen.Color:=Color;
      Pen.Width:=2;
      CircleBrush.Clear;
    end;
end;