Page 1 of 1

problems with series marks visible and width

Posted: Tue May 08, 2007 3:02 pm
by 9641173
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

Posted: Thu May 10, 2007 9:44 am
by 9348258
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.

Posted: Thu May 10, 2007 1:01 pm
by 9641173
Thank You! :D