i use JfreeChart version 1.0.9. We create a TimeSeriesChart like this.

But the chart user wants to change the line styles, like color, thickness, solid, dotted, or dashed and in the properties this is not active.
Why is this noct active?
Can someone help me? I know, i can change the color with
Code: Select all
XYItemRenderer r = plot.getRenderer();
XYLineAndShapeRenderer renderer = (XYLineAndShapeRenderer) r;
renderer.setSeriesPaint(0, Color.green);
Thanks
Rahan