problems with series marks visible and width

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
daniela
Newbie
Newbie
Posts: 14
Joined: Tue Apr 25, 2006 12:00 am

problems with series marks visible and width

Post by daniela » Tue May 08, 2007 3:02 pm

Hello,

I have a TeeChart and some polar-series.
In one serie I have to show the marks and in the others not.
Now, the serie with the visible marks has a CircleWidth of 448 and the series without visible marks has a CircleWidth of 496.

Is it possible to change the CircleWidth ore do you have any idear how to handle this?

Thank you

Edu
Advanced
Posts: 206
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia

Post by Edu » Thu May 10, 2007 9:44 am

Hi Daniela

You can change the CircleWidth with the CustomXRadius property, this property change the radius, notice that width is diameter, not radius. You can do something similar as below code:

Code: Select all

 polar1.CustomXRadius = polar1.XRadius - 10; //The radius loses 10, so the diameter loses 20.
Best Regards,
Edu

Steema Support Central
http://support.steema.com/

daniela
Newbie
Newbie
Posts: 14
Joined: Tue Apr 25, 2006 12:00 am

Post by daniela » Thu May 10, 2007 1:01 pm

Thank You! :D

Post Reply