hi:
anyone know the version 0.95 of jfreechart how to control the columns the width
(
In version 0.94 ,I could use the method
"CategoryPlot plot = chart.getCategoryPlot();
plot.setIntroGapPercent(0.5);"
)
I dont know how to do it in the version 0.95.please help me
about bar chart
Re: about bar chart
The category spacing is now controlled by the axis. You can use:
setLowerMargin(...) - to control the gap before the first category;
setCategoryMargin(...) - to control the gaps between categories;
setUpperMargin(...) - to control the gap after the last category;
These methods are defined in the CategoryAxis class.
Regards,
Dave Gilbert
setLowerMargin(...) - to control the gap before the first category;
setCategoryMargin(...) - to control the gaps between categories;
setUpperMargin(...) - to control the gap after the last category;
These methods are defined in the CategoryAxis class.
Regards,
Dave Gilbert