Page 1 of 1

Polar Plot Lines

Posted: Thu May 04, 2006 12:59 am
by 9791125
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.

Posted: Thu May 04, 2006 9:20 am
by narcis
Hi playlife,
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;
Also I would like to have a preset minimum axis value and variable maximum axis value - has this been fixed yet?
This also works doing something like:

Code: Select all

      tChart1.Axes.Left.Automatic = false;
      tChart1.Axes.Left.Minimum = 500;
      tChart1.Axes.Left.AutomaticMaximum = true;   
You can do that for left, top, right and bottom axes.

Posted: Thu May 04, 2006 11:08 pm
by 9791125
Thanks for that, it looks like it's working now.
:)