My chart background color is black and i used drawline tool to draw a white line on it.
In ActiveX version of teechart it is showing selection with white color.
But in .Net version it shows line selected with black color dots at the both ends of line.
that's why it mixes with background.
How i can achieve this in .Net version.
Selection always selects in black color
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Selection always selects in black color
Hi Quant,
For this to work in .NET you need to set Panel.Color to black, for example:
That makes handles being painted in Color.Silver.
For this to work in .NET you need to set Panel.Color to black, for example:
Code: Select all
tChart1.Panel.Color = Color.Black;
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 |
Re: Selection always selects in black color
It is strange but it worked.
thank you
thank you