I am not getting Size change option Magnifier tool in Teechart .Net version. i.e. i wanted to change the diameter of magnifier circle.
This is present in Teechart ActiveX version.
Kindly help me to find out the alternative solution.
Size for Magnifier Tool Not available in Teechart .Net
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Size for Magnifier Tool Not available in Teechart .Net
Hello Quant,
Please try this:
Please try this:
Code: Select all
Steema.TeeChart.Tools.Magnify tool1 = new Steema.TeeChart.Tools.Magnify(tChart1.Chart);
tool1.Width = 100;
tool1.Height = 100;
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: Size for Magnifier Tool Not available in Teechart .Net
it worked thank you.