Hi all, sorry if this is a beginners question.
When using a polar plot, how does one eliminate the lines which joins multiple points in a single series?
Also I would like to have a preset minimum axis value and variable maximum axis value - has this been fixed yet?
Many thanks.
Polar Plot Lines
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi playlife,
You can do that using:
You can do that for left, top, right and bottom axes.
When using a polar plot, how does one eliminate the lines which joins multiple points in a single series?
You can do that using:
Code: Select all
polar1.Pen.Visible = false;
This also works doing something like:Also I would like to have a preset minimum axis value and variable maximum axis value - has this been fixed yet?
Code: Select all
tChart1.Axes.Left.Automatic = false;
tChart1.Axes.Left.Minimum = 500;
tChart1.Axes.Left.AutomaticMaximum = true;
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 |