Page 1 of 1

CircularGauge RedLine/GreenLine border

Posted: Wed Dec 10, 2008 3:29 pm
by 13048314
I'm sure it'll be obvious when someone shows me how - I'm creating a circular gauge at runtime, and want to set the visible property of the RedLine and GreenLine border to false. I'd be grateful for any hints as to how to do this...

Posted: Wed Dec 10, 2008 3:35 pm
by narcis
Hi KeithH,

Sure, here it is:

Code: Select all

			gauge1.RedLine.Pen.Visible = false;
			gauge1.GreenLine.Pen.Visible = false;

Posted: Wed Dec 10, 2008 3:42 pm
by 13048314
That's great - thanks NarcĂ­s