Page 1 of 1

Size for Magnifier Tool Not available in Teechart .Net

Posted: Thu Jan 22, 2015 8:48 am
by 16071129
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.

Re: Size for Magnifier Tool Not available in Teechart .Net

Posted: Thu Jan 22, 2015 10:59 am
by narcis
Hello Quant,

Please try this:

Code: Select all

      Steema.TeeChart.Tools.Magnify tool1 = new Steema.TeeChart.Tools.Magnify(tChart1.Chart);
      tool1.Width = 100;
      tool1.Height = 100;

Re: Size for Magnifier Tool Not available in Teechart .Net

Posted: Fri Jan 23, 2015 4:56 am
by 16071129
it worked thank you.