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
Scaling in a polar plot
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Jan,
You can set custom ellipse's radius like this:
But I imagine you'd like to have custom axis scales. In that case you can do this:
Or this:
Hope this helps!
You can set custom ellipse's radius like this:
Code: Select all
polar1.CustomXRadius = 300;
polar1.CustomYRadius = 300;
Code: Select all
tChart1.Axes.Left.AutomaticMaximum = false;
tChart1.Axes.Left.Maximum = 1500;
Code: Select all
tChart1.Axes.Left.SetMinMax(0, 1500);
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 21
- Joined: Wed Jun 22, 2005 4:00 am
Scaling
Hi
Thanks, that did the job.
/Jan
Thanks, that did the job.
/Jan