Hello,
I am currently working with NetAdvantage for WinForms 8.1, and I have a question about WinChart labels.
I have a simple LineChart with many points, thus I want that not all the labels are displayed on the X-Axis, so that the labels are readable (for example 1 out of 7 is visible). But I would like to display all the labels in the tooltips that appear when you point with the mouse on an item of the graph.
Since both tooltips and Axis-labels use the same <ITEM_LABEL> for diplay, I cannot find out how to achieve this.
Any idea ?
Thank you,
Julien
i think the default value for Tooltips.FormatString is something like <DATA_VALUE:0>. if you set it to <ITEM_LABEL>, it should show the labels over each point, same as the x-axis labels.
Thank you for your answer. Indeed I would like to use the <ITEM_LABEL> for the tooltip, as I do for the x-axis labels. But what I want is that not all the x-axis labels are displayed, because there would be too much information on the x-axis. For the missing x-axis labels, the tooltip should then help the reader.
I hope I explained my point well...