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 2337

Summary: Polar series still drawing a pen after hiding it
Product: FireMonkey TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: yeray alonso <yeray>
Status: RESOLVED FIXED    
Severity: normal CC: yeray
Priority: ---    
Version: 29.200113   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: Polar Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2020-06-03 07:17:43 EDT
Works fine in VCL, but not in FMX.

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1.View3D:=False;
  Chart1.Legend.Hide;
  Chart1.Axes.Left.Grid.Hide;
  Chart1.Axes.Bottom.Grid.Hide;

  with TPolarSeries(Chart1.AddSeries(TPolarSeries)) do
  begin
    FillSampleValues(10);
    Pen.Visible:=False;
  end;
end;