Gantt Chart Bar ToolTips/Hints
-
- Newbie
- Posts: 5
- Joined: Tue Oct 14, 2014 12:00 am
Gantt Chart Bar ToolTips/Hints
I want to be able to show a custom tooltip/hint when the mouse is over any of the bars on my Gantt series. How do I accomplish this using teechart 2014 standard?
Re: Gantt Chart Bar ToolTips/Hints
Hello,
Since the Chart Tools are only included with the Pro version, you can't use the MarksTipTool.
http://www.steema.com/featurematrix/vcl
Then, I'm afraid the only alternative I can think on is to use the series Clicked function to retrieve the ValueIndex under the mouse at the OnMouseMove event. Store this index, probably force a Chart repaint (Chart1.Draw) and use custom drawing functions at OnAfterDraw event when the index has been stored.
Since the Chart Tools are only included with the Pro version, you can't use the MarksTipTool.
http://www.steema.com/featurematrix/vcl
Then, I'm afraid the only alternative I can think on is to use the series Clicked function to retrieve the ValueIndex under the mouse at the OnMouseMove event. Store this index, probably force a Chart repaint (Chart1.Draw) and use custom drawing functions at OnAfterDraw event when the index has been stored.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 5
- Joined: Tue Oct 14, 2014 12:00 am
Re: Gantt Chart Bar ToolTips/Hints
Thanks, that was enough of a pointer to get me started. im creating custom balloon tooltips at the x/y cursor location now.
Re: Gantt Chart Bar ToolTips/Hints
Hi,
Great! Don't hesitate to let us know if you find any problem with it.oneofsomany wrote:Thanks, that was enough of a pointer to get me started. im creating custom balloon tooltips at the x/y cursor location now.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |