Page 1 of 1

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

Posted: Fri May 20, 2005 3:34 pm
by 6919518
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?

Posted: Mon May 23, 2005 9:39 am
by narcis
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;