How can I hide the points in an XY Step Area Chart. The points are highlighted in the picture.
Asked
Active
Viewed 76 times
1 Answers
1
Among the possible approaches:
Ask the
XYStepAreaRendererto make the shapes invisible:// shapes final XYStepAreaRenderer r = (XYStepAreaRenderer) plot.getRenderer(); r.setShapesVisible(false);Specify
XYStepAreaRenderer.AREA(area only) for thetypein a custom factory method, as outlined here for a related renderer.XYItemRenderer r = new XYStepAreaRenderer(XYStepAreaRenderer.AREA,…);
trashgod
- 200,320
- 28
- 229
- 974
-
1Great. I have tested and it works like a charm. Thank you very much. – Jan Váca Jun 18 '19 at 07:58