I am having problems with TMarksTipTool with TColorGridSeries. It is probably me, but just can't work through it!
UI create the tool and initialize it but it does not display the values in the hint.
Can anyone help? Here is the code I am using...
Tip := TMarksTipTool.Create(application);
Tip.Series := Chart1.Series[0];
Tip.Style := smsValue;
Tip.MouseAction := mtmMove;
Tip.MouseDelay := 500;
Tip.Active := True;
After that I should see the hint when I move the mouse over the series right? What am I missing? I have looked at the 2 examples and they are not really much help. Eventually I would like to use the event to modify the text returned.
Thanks in advance!