MarksTip and NearestPoint adding issue
Posted: Mon Jan 18, 2016 11:24 am
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
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);