How can I hide the points in an XY Step Area Chart. The points are highlighted in the picture.
Asked
Active
Viewed 96 times
1 Answers
1
Among the possible approaches:
Ask the
XYStepAreaRenderer
to make the shapes invisible:// shapes final XYStepAreaRenderer r = (XYStepAreaRenderer) plot.getRenderer(); r.setShapesVisible(false);
Specify
XYStepAreaRenderer.AREA
(area only) for thetype
in a custom factory method, as outlined here for a related renderer.XYItemRenderer r = new XYStepAreaRenderer(XYStepAreaRenderer.AREA,…);

trashgod
- 203,806
- 29
- 246
- 1,045
-
1Great. I have tested and it works like a charm. Thank you very much. – Jan Váca Jun 18 '19 at 07:58