I have a graph that is using a secondary renderer. The first renderer is a bar chart (2 series).... Overlayed on top of that, I have two lines using a secondary renderer..
The graph is showing up OK, except for one thing:
- I am trying to make the two lines fatter... I'm using the following code, but it doesn't seem to make any difference (they always come up at the same width).
Code: Select all
plot.getSecondaryRenderer().setSeriesStroke(0,new BasicStroke(12));
plot.getSecondaryRenderer().setSeriesStroke(1,new BasicStroke(12));
These are basis categoryDatasets and category plots... nothing really fancy.
I am using version JFreechart version 0.9.6
Thanks in advance!