Hello,
A Line chart.
I use a
ChartFactory.createLineChart
with a DefaultCategoryDataset.
Works fine.
However, the "real" data values are printed as big dots on the line.
Is there an easy way to tell the chart that i don't want to see any "dots" at all?
Just the lines?
thanks
jens
lien chart without dots?
Re: line chart without dots?
Try:
CategoryPlot plot = myChart.getPlot();
CategoryItemRenderer renderer = new LineAndShapeRenderer(LineAndShapeRenderer.LINES);
plot.setRenderer(renderer);
Regards,
DG.
CategoryPlot plot = myChart.getPlot();
CategoryItemRenderer renderer = new LineAndShapeRenderer(LineAndShapeRenderer.LINES);
plot.setRenderer(renderer);
Regards,
DG.