Polar Plot Axes Scale Visability ...

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Mark
Newbie
Newbie
Posts: 12
Joined: Mon Jan 26, 2004 5:00 am
Location: Ellicott City, MD

Polar Plot Axes Scale Visability ...

Post by Mark » Fri May 28, 2004 2:17 am

Hello,

I'm back again with another simple (hopefully not too stupid) question. How do you programatically set the individual (i.e. left, right, ...) polar plot axes scale visability? I see how to set all the axes scale visibility (i.e. this.polar1.Chart.Axes.Visible = true;), but cannot get the individual axes to set.

Thanks again.

Pep
Site Admin
Site Admin
Posts: 3274
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Fri May 28, 2004 9:12 am

Hi John,

you can set visible/invisible individual axes using for example :
tChart1.Axes.Left.Visible = checkBox1.Checked;
tChart1.Axes.Right.Visible = checkBox1.Checked;

Post Reply