Jfreechart 中条形图的宽度
2022-09-02 19:38:03
有没有办法调整条形图中条形图的宽度?
我使用以下代码创建图表。
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?
);