Page 1 of 1

Scaling in a polar plot

Posted: Thu Sep 25, 2008 8:47 am
by 9637394
Hi

I have made a polar plot. The max scale(radius) of the circle equals the dataset with the higest value. But I would like the radius to be fixed.

How can I do that?

Best regards

Jan Madsen

Posted: Thu Sep 25, 2008 10:21 am
by narcis
Hi Jan,

You can set custom ellipse's radius like this:

Code: Select all

			polar1.CustomXRadius = 300;
			polar1.CustomYRadius = 300;
But I imagine you'd like to have custom axis scales. In that case you can do this:

Code: Select all

			tChart1.Axes.Left.AutomaticMaximum = false;
			tChart1.Axes.Left.Maximum = 1500;
Or this:

Code: Select all

			tChart1.Axes.Left.SetMinMax(0, 1500);
Hope this helps!

Scaling

Posted: Thu Sep 25, 2008 11:33 am
by 9637394
Hi

Thanks, that did the job.

/Jan