Page 1 of 1

MarksTip and NearestPoint adding issue

Posted: Mon Jan 18, 2016 11:24 am
by 16071129
Hi
I added single MarksTip and NearestPoint tools in my chart programmatically. It is added twice when I saw it from Tchart Editor window.
I used following code

Code: Select all

            Candle newSeries = new Candle();
            newSeries.FillSampleValues();
            Steema.TeeChart.Tools.MarksTip marksTip1 = new Steema.TeeChart.Tools.MarksTip();
            Steema.TeeChart.Tools.NearestPoint nearestPoint1 = new Steema.TeeChart.Tools.NearestPoint();
            tChart1.Series.Add(newSeries);
            tChart1.Tools.Add(marksTip1);
            tChart1.Tools.Add(nearestPoint1);
1.PNG
1.PNG (21.4 KiB) Viewed 6103 times

Re: MarksTip and NearestPoint adding issue

Posted: Tue Jan 19, 2016 10:15 am
by Christopher
Quant wrote: I added single MarksTip and NearestPoint tools in my chart programmatically. It is added twice when I saw it from Tchart Editor window.
Using the same code and the latest public version of TeeChart, I obtain the following:
editor_tools.PNG
editor_tools.PNG (8.6 KiB) Viewed 6110 times