-
6 Feb 2012 10:10 AM #1
Pie Chart - tooltips not working?
Pie Chart - tooltips not working?
I have working tool tips on my column charts with no problems. When I use the same code for a Pie chart, no tool tips are displayed even though the code is called. Any ideas?
Note that
Does seem to work in IE at least.Code:chart.setTitle("blah");
Code:protected final SeriesToolTipConfig<T> toolTipConfig = new SeriesToolTipConfig<T>(); ... private PieSeries<T> series = new PieSeries<T>(); toolTipConfig.setNumericLabelProvider(null); series.setToolTipConfig(toolTipConfig); ... series.addSeriesItemOverHandler(new SeriesItemOverHandler() { @Override public void onSeriesOverItem(SeriesItemOverEvent event) { toolTipConfig.setBodyHtml("my cool text!"); } });
-
6 Feb 2012 4:14 PM #2
Thanks for bringing this to my attention. This is fixed in SVN and will be in the next release.
Success! Looks like we've fixed this one. According to our records the fix was applied for
a bug in our system
in
a recent build.


Reply With Quote