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?
How do I set the color and visibility of the Panel frame?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Gary,
You can do it using:
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 |
Instructions - How to post in this forum |