Thank you very much for your response. What you provided does work, but for the data point tooltips, not the X Axis. I already have tooltips setup for the data points using the code below.
string tooltipText = "";
tooltipText = Convert.ToString(r.ItemArray[0]);
tooltipText += "\r\n" + Convert.ToString(t.Columns[i].ColumnName);
tooltipText += "\r\n" + Convert.ToString(value);
chartFX.Points[iRow, i - 1].Text = tooltipText;
chartFX.ToolTipFormat = "%L";
What I need is a way to have my tooltips on my data points as well as tooltips for the Labels on my X Axis. When the user hovers over the label on the X Axis, they should see a tooltip consisting of a unique number, a dash and the name for that unique number while the actual label on the X Axis will only show the unique number. For instance, my chart will have X Axis labels of the following:
1310
1320
1519
1510
For each of these X Axis Labels, the tooltip will be like this:
1310-my line
1320-your line
1519-his line
1510-her line
Is there a way to do this?
Thanks,
Brijess