Java Apache POI 创建 Excel 折线图详解
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellType;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.xddf.usermodel.chart.*;
import org.apache.poi.xssf.usermodel.XSSFClientAnchor;
import org.apache.poi.xssf.usermodel.XSSFDrawing;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTLineSer;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class ExcelChartExample04 {
public static void main(String[] args) {
try {
// 读取Excel文件
FileInputStream fileIn = new FileInputStream('input-1.xlsx');
XSSFWorkbook workbook = new XSSFWorkbook(fileIn);
XSSFSheet sheet1 = workbook.getSheet('P1');
// 创建折线图
XSSFDrawing drawing = sheet1.createDrawingPatriarch();
XSSFClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, 129, 10, 149);
XDDFChart chart = drawing.createChart(anchor);
chart.setTitleText('数据折线图');
chart.setTitleOverlay(false);
// 设置图表背景颜色为白色
chart.setPlotAreaBackgroundColor(255, 255, 255);
// 设置图例位置
XDDFChartLegend legend = chart.getOrAddLegend();
legend.setPosition(LegendPosition.BOTTOM);
// 设置横坐标轴为日期坐标轴
XDDFDataSource<?> dateSource = XDDFDataSourcesFactory.fromArray(new String[] {'A2:A127'});
XDDFDateAxis bottomAxis = chart.createDateAxis(AxisPosition.BOTTOM);
bottomAxis.setCrosses(AxisCrosses.AUTO_ZERO);
bottomAxis.setTitle('时间');
bottomAxis.setTickLabelPosition(AxisTickLabelPosition.NEXT_TO);
// 设置时间格式
SimpleDateFormat dateFormat = new SimpleDateFormat('yyyy/MM/dd');
for (int i = 0; i < dateSource.getPointCount(); i++) {
Row row = sheet1.getRow(i + 1);
if (row != null) {
Cell cell = row.getCell(0);
if (cell != null && cell.getCellType() == CellType.NUMERIC) {
Date date = cell.getDateCellValue();
String formattedDate = dateFormat.format(date);
cell.setCellValue(formattedDate);
}
}
}
// 设置左侧坐标轴为温度坐标轴
XDDFValueAxis leftAxis = chart.createValueAxis(AxisPosition.LEFT);
leftAxis.setCrosses(AxisCrosses.AUTO_ZERO);
leftAxis.setTitle('温度');
// 设置右侧坐标轴为数值坐标轴
XDDFValueAxis rightAxis = chart.createValueAxis(AxisPosition.RIGHT);
rightAxis.setCrosses(AxisCrosses.MAX);
rightAxis.setTitle('数据值');
// 设置数据源
XDDFNumericalDataSource<Double> xs1 = XDDFDataSourcesFactory.fromNumericCellRange(sheet1, new CellRangeAddress(1, 127, 0, 0));
XDDFNumericalDataSource<Double> ys1 = XDDFDataSourcesFactory.fromNumericCellRange(sheet1, new CellRangeAddress(1, 127, 1, 1));
XDDFNumericalDataSource<Double> ys2 = XDDFDataSourcesFactory.fromNumericCellRange(sheet1, new CellRangeAddress(1, 127, 2, 2));
// 添加数据系列
XDDFLineChartData data = (XDDFLineChartData) chart.createData(ChartTypes.LINE, bottomAxis, leftAxis);
XDDFLineChartData.Series series1 = (XDDFLineChartData.Series) data.addSeries(xs1, ys1);
series1.setTitle('折线图1', null);
series1.setSmooth(false);
series1.setMarkerStyle(MarkerStyle.NONE);
// 添加第二个数据系列
XDDFLineChartData.Series series2 = (XDDFLineChartData.Series) data.addSeries(xs1, ys2);
series2.setTitle('折线图2', null);
series2.setSmooth(false);
chart.getCTChart().getPlotArea().getLineChartArray(0).getSerArray(1).getOrder().setVal(1);
// 设置次要垂直坐标轴
CTLineSer ctLineSer = chart.getCTChart().getPlotArea().getLineChartArray(0).getSerArray(1);
ctLineSer.addNewDLbls();
ctLineSer.getDLbls().addNewShowLegendKey().setVal(false);
ctLineSer.getDLbls().addNewShowVal().setVal(false);
ctLineSer.getDLbls().addNewShowCatName().setVal(false);
ctLineSer.getDLbls().addNewShowSerName().setVal(false);
// 保存Excel文件
FileOutputStream fileOut = new FileOutputStream('input-1.xlsx');
workbook.write(fileOut);
fileOut.close();
System.out.println('折线图已创建并保存到Excel文件中。');
} catch (IOException e) {
e.printStackTrace();
}
}
}
代码解析:
- 导入必要类库: 首先导入 Apache POI 库中用于操作 Excel 文件和图表相关的类。
- 读取 Excel 文件: 使用
FileInputStream读取现有的 Excel 文件,并使用XSSFWorkbook创建工作簿对象。 - 创建折线图:
- 获取工作表对象,使用
createDrawingPatriarch()创建绘图管理器。 - 使用
createAnchor()创建图表锚点,用于指定图表在工作表中的位置和大小。 - 使用
createChart()创建图表对象,并设置图表标题和标题是否覆盖图表内容。 - 解决透明背景问题: 使用
setPlotAreaBackgroundColor()设置图表背景颜色为白色,解决默认透明背景导致图表不可见的问题。 - 设置图例位置、坐标轴格式、数据系列等图表元素。
- 获取工作表对象,使用
- 添加数据系列:
- 使用
createData()创建图表数据对象,指定图表类型、横坐标轴和纵坐标轴。 - 使用
addSeries()添加数据系列,设置数据源、系列标题、是否平滑曲线、标记样式等属性。
- 使用
- 设置次要坐标轴:
- 获取次要坐标轴对象,并设置其标签显示属性。
- 保存 Excel 文件:
- 使用
FileOutputStream创建文件输出流,将修改后的工作簿写入到 Excel 文件中。
- 使用
通过以上步骤,你就可以使用 Apache POI 库在 Java 中创建包含多个数据系列的 Excel 折线图,并自定义图表样式以满足数据可视化的需求。
注意: 请确保你的项目中已正确添加 Apache POI 库的依赖。
原文地址: https://www.cveoy.top/t/topic/fSGg 著作权归作者所有。请勿转载和采集!