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 - Polar series still drawing a pen after hiding it
Summary: Polar series still drawing a pen after hiding it
Status: RESOLVED FIXED
Alias: None
Product: FireMonkey TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: 29.200113
Hardware: PC Windows
: --- normal
Target Milestone: ---
Assignee: yeray alonso
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-06-03 07:17 EDT by yeray alonso
Modified: 2020-06-03 07:18 EDT (History)
1 user (show)

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 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;