I'm using Steema's TeeChart.WPF.
The chart I'm implementing contains three Series from TeeChart.WPF.Styles.Line and TeeChart.WPF.Styles.Points.
For the points I make use of adding tooltip information by using
Code: Select all
C#
Steema.TeeChart.WPF.Tools.MarksTip MarksTip_Points_Values = new Steema.TeeChart.WPF.Tools.MarksTip(MainChart.Chart)
{
Series = ChartPoints_Values
};
Code: Select all
C#
ChartPoints_Values.Add((int) viewRowStation.Row["ID"], (double) viewRowValues.Row["Value"], string.Format("Tooltip information... {0}: {1} | {2}", value, value, value), PointColor);
But whenever a point is added, the tooltip text will be shown on the corresponding X-axis.
(see picture where "Station 9" is getting overlayed from information) How can I prevent the tooltips from being shown on an axis?
Additional curiosity I cannot resolve is seen in the two more pictures, attached.
Zoomed into the (same) chart - there are no tooltip information over the axis labels.
The same chart moved a bit to the right with panning, so the third point comes into the visible chart area - voilá tooltip information over the axis label.
Thank you.
Best, Jens