Tag: bar chart

JFreeChart BarChart – >没有渐变

默认情况下,我的条形图始终使用渐变颜色绘制。 我只想要一个没有任何风格效果的简单颜色。 有人可以帮忙吗? 码: final JFreeChart chart = ChartFactory.createBarChart( “”, // chart title xLabel, // domain axis label yLabel, // range axis label dataset, // data PlotOrientation.VERTICAL, // orientation true, // include legend false, // tooltips? false // URLs? ); final CategoryPlot plot = chart.getCategoryPlot(); // SOMETHING HAS TO BE DONE HERE showChart(chart); // Simply […]