Polar Plot Lines

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
playlife
Newbie
Newbie
Posts: 2
Joined: Thu Apr 20, 2006 12:00 am

Polar Plot Lines

Post by playlife » Thu May 04, 2006 12:59 am

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.

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 May 04, 2006 9:20 am

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.
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

playlife
Newbie
Newbie
Posts: 2
Joined: Thu Apr 20, 2006 12:00 am

Post by playlife » Thu May 04, 2006 11:08 pm

Thanks for that, it looks like it's working now.
:)

Post Reply