Hi - how can i remove the black circle that borders a polar chart?
thank you,
russ
Remove circle around polar chart
Re: Remove circle around polar chart
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Remove circle around polar chart
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++.
Re: Remove circle around polar chart
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.
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Remove circle around polar chart
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:
thanks again,
russ
Code: Select all
TPolarSeries *series1 = new TPolarSeries(Form1);
series1->CirclePen->Hide();
russ