How do I set the color and visibility of the Panel frame?

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Gary
Newbie
Newbie
Posts: 2
Joined: Fri Nov 15, 2002 12:00 am

How do I set the color and visibility of the Panel frame?

Post by Gary » Fri May 20, 2005 3:34 pm

How do I set the color and visibility of the Panel frame/border or the Legend frame/border?

Where have the frames/borders gone in Teechart.Net?

.Legend.frame and .Panel.Frame no longer exist.

Steema Support - can I have an answer please?

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

Post by Narcís » Mon May 23, 2005 9:39 am

Hi Gary,

You can do it using:

Code: Select all

			this.tChart1.Panel.Pen.Visible=true;
			this.tChart1.Panel.Pen.Color=Color.Blue;
			this.tChart1.Panel.Pen.Width=5;

			this.tChart1.Legend.Pen.Visible=true;
			this.tChart1.Legend.Pen.Color=Color.Green;
			this.tChart1.Legend.Pen.Width=5;
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

Post Reply