Hey,
There's a problem with the XYDotRenderer, with this renderer it is not possible to set a serie not visible.
I think the problem is in the function DrawItem , this function doesn't take care the XYItemRendererState argument.
Problem with XYDotRenderer
Problem with XYDotRenderer
------------------------------
Thanks
Yoann
Thanks
Yoann
-
- JFreeChart Project Leader
- Posts: 11734
- Joined: Fri Mar 14, 2003 10:29 am
- antibot: No, of course not.
- Contact:
Add the following as the first lines of code in the drawItem() method:
Code: Select all
// do nothing if item is not visible
if (!getItemVisible(series, item)) {
return;
}
David Gilbert
JFreeChart Project Leader
Read my blog
Support JFree via the Github sponsorship program
JFreeChart Project Leader

