Scaling in a polar plot

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Jan Madsen
Newbie
Newbie
Posts: 21
Joined: Wed Jun 22, 2005 4:00 am

Scaling in a polar plot

Post by Jan Madsen » Thu Sep 25, 2008 8:47 am

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Sep 25, 2008 10:21 am

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!
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Jan Madsen
Newbie
Newbie
Posts: 21
Joined: Wed Jun 22, 2005 4:00 am

Scaling

Post by Jan Madsen » Thu Sep 25, 2008 11:33 am

Hi

Thanks, that did the job.

/Jan

Post Reply