CircularGauge RedLine/GreenLine border

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
KeithH
Newbie
Newbie
Posts: 3
Joined: Mon Feb 11, 2008 12:00 am

CircularGauge RedLine/GreenLine border

Post by KeithH » Wed Dec 10, 2008 3:29 pm

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Dec 10, 2008 3:35 pm

Hi KeithH,

Sure, here it is:

Code: Select all

			gauge1.RedLine.Pen.Visible = false;
			gauge1.GreenLine.Pen.Visible = false;
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

KeithH
Newbie
Newbie
Posts: 3
Joined: Mon Feb 11, 2008 12:00 am

Post by KeithH » Wed Dec 10, 2008 3:42 pm

That's great - thanks Narcís

Post Reply