请帮助。
我正在使用谷歌的guava lib来生成带有jFreeChart的X-Y折线图。我能够生成简单的X-Y折线图。但是我无法使用它生成bar-char。
任何帮助都会表示赞赏。
答案 0 :(得分:8)
从我认为位于此处的教程指南:pdf
条形图示例
假设我们想要构建一个比较所获利润的条形图 以下销售人员:Jane,Tom,Jill,John,Fred。
public class BarChartExample {
public static void main(String[] args) {
// Create a simple Bar chart
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
dataset.setValue(6, "Profit", "Jane");
dataset.setValue(7, "Profit", "Tom");
dataset.setValue(8, "Profit", "Jill");
dataset.setValue(5, "Profit", "John");
dataset.setValue(12, "Profit", "Fred");
JFreeChart chart = ChartFactory.createBarChart("Comparison between Salesman",
"Salesman", "Profit", dataset, PlotOrientation.VERTICAL,
false, true, false);
try {
ChartUtilities.saveChartAsJPEG(new File("C:\\chart.jpg"), chart, 500, 300);
} catch (IOException e) {
System.err.println("Problem occurred creating chart.");
}}}
说明:
要为条形图定义数据集,请使用类
的对象DefaultCategoryDataset.
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
可以使用setValue()方法将值添加到数据集中。
dataset.setValue(6, “Profit”, “Jane”);
第一个参数指定Jane实现的利润水平。第二个参数指定 什么将出现在图例中的条形意义。 要生成类JFreeChart的条形图对象,请使用方法createBarChart() 使用ChartFactory。它采用与所需的相同的参数集 createXYLineChart()。第一个参数表示图表的标题,第二个参数表示 x轴的标签,第三个是y轴的标签。
JFreeChart chart = ChartFactory.createBarChart("Comparison between Salesman",
"Salesman", "Profit", dataset, PlotOrientation.VERTICAL, false, true, false);
修改:与饼图的情况一样,可以使用createBarChart3D()方法以3D形式显示条形。
修饰:
值得一提的是调整图表的外观(例如颜色)。
chart.setBackgroundPaint(Color.yellow); // Set the background colour of the chart
chart.getTitle().setPaint(Color.blue); // Adjust the colour of the title
CategoryPlot p = chart.getCategoryPlot(); // Get the Plot object for a bar graph
p.setBackgroundPaint(Color.black); // Modify the plot background
p.setRangeGridlinePaint(Color.red); // Modify the colour of the plot gridlines
希望您可以根据自己的需要进行修改,
祝你好运!