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);