parent
d5ad605b35
commit
bc13f67a29
@ -0,0 +1,181 @@
|
|||||||
|
package cn.teammodel.utils;
|
||||||
|
|
||||||
|
import org.jfree.chart.ChartFactory;
|
||||||
|
import org.jfree.chart.JFreeChart;
|
||||||
|
import org.jfree.chart.StandardChartTheme;
|
||||||
|
import org.jfree.chart.labels.StandardCategoryItemLabelGenerator;
|
||||||
|
import org.jfree.chart.labels.StandardPieSectionLabelGenerator;
|
||||||
|
import org.jfree.chart.plot.CategoryPlot;
|
||||||
|
import org.jfree.chart.plot.PiePlot;
|
||||||
|
import org.jfree.chart.plot.PlotOrientation;
|
||||||
|
import org.jfree.chart.renderer.category.BarRenderer;
|
||||||
|
import org.jfree.chart.renderer.category.LineAndShapeRenderer;
|
||||||
|
import org.jfree.chart.renderer.category.StandardBarPainter;
|
||||||
|
import org.jfree.data.category.DefaultCategoryDataset;
|
||||||
|
import org.jfree.data.general.DefaultPieDataset;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
import java.text.DecimalFormat;
|
||||||
|
import java.text.NumberFormat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生成图表工具类
|
||||||
|
* @author winter
|
||||||
|
* @create 2023-10-30 11:12
|
||||||
|
*/
|
||||||
|
public class ChartUtil {
|
||||||
|
private static final Color[] BAR_COLORS = new Color[]{
|
||||||
|
new Color(79,129,189),
|
||||||
|
new Color(192, 80, 77),
|
||||||
|
new Color(155, 187, 89),
|
||||||
|
};
|
||||||
|
|
||||||
|
private static final Color[] LINE_COLORS = new Color[]{
|
||||||
|
new Color(237, 123, 46),
|
||||||
|
new Color(90, 154, 213),
|
||||||
|
new Color(164, 164, 164),
|
||||||
|
};
|
||||||
|
|
||||||
|
private static final Color[] PIE_COLORS = new Color[]{
|
||||||
|
new Color(75, 172, 198),
|
||||||
|
new Color(128, 100, 162),
|
||||||
|
new Color(155, 187, 89),
|
||||||
|
new Color(192, 80, 77),
|
||||||
|
new Color(79, 129, 189),
|
||||||
|
new Color(44, 77, 117),
|
||||||
|
new Color(247, 150, 70),
|
||||||
|
new Color(165, 165, 165),
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
private static StandardChartTheme initChartTheme(){
|
||||||
|
StandardChartTheme currentTheme = new StandardChartTheme("JFree");
|
||||||
|
// 横轴纵轴标题文字大小
|
||||||
|
currentTheme.setLargeFont(new Font("宋体", Font.BOLD, 15));
|
||||||
|
// 横轴纵轴数值文字大小
|
||||||
|
currentTheme.setRegularFont(new Font("宋体", Font.PLAIN, 13));
|
||||||
|
currentTheme.setExtraLargeFont(new Font("宋体", Font.BOLD, 20));
|
||||||
|
// 背景颜色
|
||||||
|
currentTheme.setPlotBackgroundPaint(new Color(255, 255, 204, 0));
|
||||||
|
// 边框线条
|
||||||
|
currentTheme.setPlotOutlinePaint(new Color(0, 0, 0, 0));
|
||||||
|
// 网格线条
|
||||||
|
currentTheme.setRangeGridlinePaint(new Color(78, 74, 74));
|
||||||
|
return currentTheme;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 线图
|
||||||
|
*
|
||||||
|
* @param title 标题
|
||||||
|
* @param categoryAxisLabel 分类标签
|
||||||
|
* @param valueAxisLabel 数值标签
|
||||||
|
* @param dataset 数据集
|
||||||
|
* @return org.jfree.chart.JFreeChart
|
||||||
|
*/
|
||||||
|
public static JFreeChart lineChart(String title, String categoryAxisLabel, String valueAxisLabel, DefaultCategoryDataset dataset){
|
||||||
|
ChartFactory.setChartTheme(initChartTheme());
|
||||||
|
|
||||||
|
JFreeChart chart = ChartFactory.createLineChart(
|
||||||
|
title,
|
||||||
|
categoryAxisLabel,
|
||||||
|
valueAxisLabel,
|
||||||
|
dataset,
|
||||||
|
PlotOrientation.VERTICAL,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
false
|
||||||
|
);
|
||||||
|
|
||||||
|
CategoryPlot plot = chart.getCategoryPlot();
|
||||||
|
LineAndShapeRenderer renderer = (LineAndShapeRenderer) plot.getRenderer();
|
||||||
|
// 折现点显示数值
|
||||||
|
renderer.setDefaultItemLabelsVisible(true);
|
||||||
|
renderer.setDefaultItemLabelGenerator(new StandardCategoryItemLabelGenerator());
|
||||||
|
// 更改线条颜色
|
||||||
|
for (int i = 0; i < dataset.getRowKeys().size(); i++) {
|
||||||
|
renderer.setSeriesPaint(i, LINE_COLORS[i]);
|
||||||
|
}
|
||||||
|
return chart;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 柱状图
|
||||||
|
*
|
||||||
|
* @param title
|
||||||
|
* @param categoryAxisLabel
|
||||||
|
* @param valueAxisLabel
|
||||||
|
* @param dataset 数据集
|
||||||
|
* @return org.jfree.chart.JFreeChart
|
||||||
|
*/
|
||||||
|
public static JFreeChart barChart(String title, String categoryAxisLabel, String valueAxisLabel, DefaultCategoryDataset dataset){
|
||||||
|
ChartFactory.setChartTheme(initChartTheme());
|
||||||
|
|
||||||
|
JFreeChart chart = ChartFactory.createBarChart(
|
||||||
|
title,
|
||||||
|
categoryAxisLabel,
|
||||||
|
valueAxisLabel,
|
||||||
|
dataset,
|
||||||
|
PlotOrientation.VERTICAL,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
false
|
||||||
|
);
|
||||||
|
|
||||||
|
CategoryPlot plot = chart.getCategoryPlot();
|
||||||
|
BarRenderer renderer = (BarRenderer) plot.getRenderer();
|
||||||
|
// 纯色显示
|
||||||
|
renderer.setBarPainter(new StandardBarPainter());
|
||||||
|
// 柱子上显示小数字
|
||||||
|
renderer.setDefaultItemLabelsVisible(true);
|
||||||
|
renderer.setDefaultItemLabelGenerator(new StandardCategoryItemLabelGenerator());
|
||||||
|
// 设置柱子间隔
|
||||||
|
renderer.setItemMargin(0.0);
|
||||||
|
// 设置柱子颜色
|
||||||
|
for (int i = 0; i < dataset.getRowKeys().size(); i++) {
|
||||||
|
renderer.setSeriesPaint(i, BAR_COLORS[i]);
|
||||||
|
}
|
||||||
|
return chart;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 饼图
|
||||||
|
* @param title
|
||||||
|
* @param dataset
|
||||||
|
* @return org.jfree.chart.JFreeChart
|
||||||
|
*/
|
||||||
|
public static JFreeChart pieChart(String title, DefaultPieDataset dataset){
|
||||||
|
ChartFactory.setChartTheme(initChartTheme());
|
||||||
|
|
||||||
|
JFreeChart chart = ChartFactory.createPieChart(
|
||||||
|
title,
|
||||||
|
dataset,
|
||||||
|
true,
|
||||||
|
true,
|
||||||
|
false
|
||||||
|
);
|
||||||
|
PiePlot plot = (PiePlot) chart.getPlot();
|
||||||
|
// 设置扇区颜色
|
||||||
|
for (int i = 0; i < dataset.getKeys().size(); i++) {
|
||||||
|
plot.setSectionPaint(dataset.getKey(i), PIE_COLORS[i]);
|
||||||
|
}
|
||||||
|
// 设置扇区的线条颜色
|
||||||
|
plot.setDefaultSectionOutlinePaint(new Color(255, 255, 255));
|
||||||
|
// 设置扇区的线条大小
|
||||||
|
plot.setDefaultSectionOutlineStroke(new BasicStroke(3));
|
||||||
|
// 设置标签颜色
|
||||||
|
plot.setLabelLinkPaint(new Color(255,255,255, 0));
|
||||||
|
// 设置标签背景色
|
||||||
|
plot.setLabelBackgroundPaint(new Color(255, 255, 255,0));
|
||||||
|
// 设置标签线条颜色
|
||||||
|
plot.setLabelOutlinePaint(new Color(255, 255, 255, 0));
|
||||||
|
// 设置标签阴影颜色
|
||||||
|
plot.setLabelShadowPaint(new Color(255, 255, 255, 0));
|
||||||
|
// 设置饼图阴影颜色
|
||||||
|
plot.setShadowPaint(new Color(255, 255, 255, 0));
|
||||||
|
// 添加标签数字百分比显示
|
||||||
|
plot.setLabelGenerator(new StandardPieSectionLabelGenerator(("{0}{2}"), NumberFormat.getNumberInstance(),new DecimalFormat("0.00%")));
|
||||||
|
return chart;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Binary file not shown.
Loading…
Reference in new issue