Hi there,
Could someone please let me know how to increase thickness of a line series in JFreeChart?
Thanks,
Ajith
how to increase thickness of a jfree chart line series?
-
- Posts: 1
- Joined: Tue Sep 08, 2009 12:23 am
- antibot: No, of course not.
Re: how to increase thickness of a jfree chart line series?
Hi Ajith,
Apply following steps:
1. Get the renderer you are using for painting the series
2. Then simply apply renderer.setSeriesStroke ( <series number, if you have only one it is 0>, new BasicStroke ( <thickness as float, i.e 2.0f etc> ));
k
Apply following steps:
1. Get the renderer you are using for painting the series
2. Then simply apply renderer.setSeriesStroke ( <series number, if you have only one it is 0>, new BasicStroke ( <thickness as float, i.e 2.0f etc> ));
k