Remove circle around polar chart

TeeChart FireMonkey (Windows,OSX,iOS & Android) for Embarcadero RAD Studio, Delphi and C++ Builder (XE5+)
Post Reply
relayman
Newbie
Newbie
Posts: 20
Joined: Tue Jun 25, 2019 12:00 am

Remove circle around polar chart

Post by relayman » Wed Oct 16, 2019 2:35 am

Hi - how can i remove the black circle that borders a polar chart?

Image

thank you,
russ

Yeray
Site Admin
Site Admin
Posts: 9509
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Remove circle around polar chart

Post by Yeray » Wed Oct 16, 2019 7:16 am

Hello Russell,

You can hide the CirclePen:

Code: Select all

  Series1.CirclePen.Hide;
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

relayman
Newbie
Newbie
Posts: 20
Joined: Tue Jun 25, 2019 12:00 am

Re: Remove circle around polar chart

Post by relayman » Wed Oct 16, 2019 9:44 pm

Hi Yeray - i can't figure how to do that in C++Builder. I've got Series[1]-> but there is no CirclePen property. Not sure how to get to it in C++.

Yeray
Site Admin
Site Admin
Posts: 9509
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Remove circle around polar chart

Post by Yeray » Thu Oct 17, 2019 6:30 am

Hello,

Series[1] returns a TChartSeries. You should cast to TPolarSeries to get access to CirclePen property and the rest of properties specific to the polar series.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

relayman
Newbie
Newbie
Posts: 20
Joined: Tue Jun 25, 2019 12:00 am

Re: Remove circle around polar chart

Post by relayman » Thu Oct 17, 2019 7:10 pm

Thank you Yeray! Your comment about cast made me realize that earlier in my code i'm adding a polar series so i just did the "hide" in that code block:

Code: Select all

TPolarSeries *series1 = new TPolarSeries(Form1);
series1->CirclePen->Hide();
thanks again,
russ

Post Reply