Page 1 of 1

Display Tooltip on specific chart point

Posted: Tue Jul 12, 2011 4:26 pm
by 16657923
Hi,

We would like to display tooltip when user move mouse cursor on our triangle Points(in down red or up blue here) (please look at our example)
Tooltips.jpg
Tooltips.jpg (96.44 KiB) Viewed 8114 times
In fact we would like to display only 1 mark on the mouse cursor position

How can we do this ?

Thank you for your help

Regards,

Guilz

Re: Display Tooltip on specific chart point

Posted: Wed Jul 13, 2011 8:20 am
by 16657923
The Rectangle Tool - MouseOverHints Demo is a good answer to my need but I don't want users could change the rectangle size...Is it possible to block this ?
Tooltips2.jpg
Tooltips2.jpg (55.37 KiB) Viewed 8029 times

Re: Display Tooltip on specific chart point

Posted: Wed Jul 13, 2011 9:16 am
by yeray
Hello Guilz,

Yes, here there are a pair of properties you could be interested in:

Code: Select all

  TChart1.Tools.Items(0).asRectangle.AllowResize = False
  TChart1.Tools.Items(0).asRectangle.AllowDrag = False

Re: Display Tooltip on specific chart point

Posted: Wed Jul 13, 2011 9:19 am
by 16657923
Thank you Yeray, I will try it :D

Regards,

Guilz