Hi,
We have created a bubble chart but the legend does not show the bubble symbols (hence not possible to know which series is which).
We have something like this:
Bubble b = new Bubble(chart.getChart());
b.setTitle("hello");
b.add(1,3, 0.2f, "entry x");
..... (more add points)
chart.setShowLegend(true);
The legend is shown, but no symbol for the bubble. Symbol is shown for other chart types such as Line.
what can I try?
thanks,
Steven.
Bubble Symbol not shown in legend
-
- Newbie
- Posts: 21
- Joined: Tue Nov 15, 2011 12:00 am
Re: Bubble Symbol not shown in legend
huh! figured it out.
bubble.setColorEach(false);
did the job. Thanks... anyway
bubble.setColorEach(false);
did the job. Thanks... anyway