Hello,
I have created my chart panel with (false, true, true, true, false) params, last one stating that no tooltips be generated. When i start my application i see no tooltips but my profiler still tells me that 17% of all the chart processing !! is taken up on TimeSeriesToolTipGenerator.generateToolTip()
Is there any way to make sure this is not called ?????
I would like to have tooltips when the user moves the mouse over the points but currently it is generated no matter what on each draw and is takin up lots of CPU
Any info/pointers/help on this ?
I am creating lots of dynamic graphs using lots of CPU, loosing 16% on tooltip generation is a lot if i can avoid it
Thanks in advance
Alan
generateToolTip called even though tooltips disabled
-
- Posts: 115
- Joined: Fri Mar 14, 2003 3:13 pm
- Location: London, England
- Contact:
Tooltips Generation
If you do a setToolTipGenerator(null) on your Renderer the tooltip generation code will not be called.
Regards,
Richard...
Regards,
Richard...
Tooltips Generation
Thanks for that....
Could i manage it using the mouse over event on the chart ?
i.e. could i enable/disable the toolip generator only when the user has a mouse over the itemrenderers
?
Regards
-Alan
Could i manage it using the mouse over event on the chart ?
i.e. could i enable/disable the toolip generator only when the user has a mouse over the itemrenderers
?
Regards
-Alan