Closed GoogleCodeExporter closed 9 years ago
Found a Solution ... Tried to set global tooltip but not for the series.
Solution:
Set a Tooltip for every series
Series<Number> series2 = new SimpleSeries();
series2.setData(/*Some data*/);
series2.setTooltip(new Tooltip().setValueSuffix(" €"));
Series<Number> series1 = new SimpleSeries();
series1.setData(/*Some data*/);
series1.setTooltip(new Tooltip().setValueSuffix(" m³"));
Original comment by Chakaaa
on 1 Nov 2013 at 12:45
Thanks for sharing your solution!
Original comment by tom.homb...@gmail.com
on 1 Nov 2013 at 10:11
Original issue reported on code.google.com by
Chakaaa
on 31 Oct 2013 at 11:50