Page 1 of 1

Polar Plot Axes Scale Visability ...

Posted: Fri May 28, 2004 2:17 am
by 8123616
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.

Posted: Fri May 28, 2004 9:12 am
by Pep
Hi John,

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