width of the bar in Jfreechart

Posted by Harish on Stack Overflow See other posts from Stack Overflow or by Harish
Published on 2009-12-29T10:28:19Z Indexed on 2010/06/15 2:02 UTC
Read the original article Hit count: 381

Filed under:
|
|
|

Is there a way to adjust the width of the bars in a Barchart.I create my chart with the following code.

final JFreeChart chart = ChartFactory.createBarChart("Report", // chart title
                "Date", // domain axis label
                "Number", // range axis label
                dataset, // data
                PlotOrientation.VERTICAL, // orientation
                true, // include legend
                true, // tooltips?
                false // URLs?
                );  

© Stack Overflow or respective owner

Related posts about java

Related posts about width