In a line graph, mark tips displays X and Y values. I want to change the tips to a different value, say for e.g. I want to display the line title instead.
How can I do that?
Thanks in Advance.
Sky
Customize Marks Tip
Hi Sky
You can use the "GetText" markTips event, as below code:
You can use the "GetText" markTips event, as below code:
Code: Select all
private void marksTip1_GetText(Steema.TeeChart.Tools.MarksTip sender, Steema.TeeChart.Tools.MarksTipGetTextEventArgs e)
{
e.Text = line1.Title;
}