gpt4 book ai didi

java - 如何修改apache poi中的图形标签?

转载 作者:行者123 更新时间:2023-12-02 09:06:25 28 4
gpt4 key购买 nike

现在,我正在尝试从现有 .xlsx 修改以下标签

图形图像: Graph Image

图表已经修改了我想要的公式和值,但这些数字仍然从图表中以前的值中获取其值。我怎样才能改变它们?我正在寻找以前的问题,据说用于获取当前标签值(在修改它们之前)的方法如下:

drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(2).getVal().getNumRef().getNumCache()

获得的绘图是我的工作表中的以下绘图:

 XSSFDrawing drawing = sheet.createDrawingPatriarch();

但是我得到了一个包含 107 个值的列表...所以我不确定它是否正确。我不知道我需要修改什么。请提供一些帮助,我将不胜感激。

关于如何修改图表的最小示例:

此 Excel 工作表有五个系列列表,其中的公式基于其他 Excel 工作表。所以我做了以下代码:

 drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(0).getVal().getNumRef().setF("PERD_POLICY!$S$15:$S$" + lineasPerdPolicy + "");
drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(0).getCat().getNumRef().setF("PERD_POLICY!$Q$15:$Q$" + lineasPerdPolicy);

drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(1).getVal().getNumRef().setF("PERD_POLICY!$T$15:$T$" + lineasPerdPolicy);
drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(1).getCat().getNumRef().setF("PERD_POLICY!$Q$15:$Q$" + lineasPerdPolicy);

drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(2).getVal().getNumRef().setF("PERD_POLICY!$U$15:$U$" + lineasPerdPolicy);
drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(2).getCat().getNumRef().setF("PERD_POLICY!$Q$15:$Q$" + lineasPerdPolicy);

drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(3).getVal().getNumRef().setF("PERD_POLICY!$V$15:$V$" + lineasPerdPolicy);
drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(3).getCat().getNumRef().setF("PERD_POLICY!$Q$15:$Q$" + lineasPerdPolicy);

drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(4).getVal().getNumRef().setF("PERD_POLICY!$W$15:$W$" + lineasPerdPolicy);
drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(4).getCat().getNumRef().setF("PERD_POLICY!$Q$15:$Q$" + lineasPerdPolicy);

drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(5).getVal().getNumRef().setF("PERD_POLICY!$R$15:$R$" + lineasPerdPolicy);
drawing.getCharts().get(0).getCTChart().getPlotArea().getLineChartList().get(0).getSerList().get(5).getCat().getNumRef().setF("PERD_POLICY!$Q$15:$Q$" + lineasPerdPolicy);

lineasPerdPolicy 是一个变量,我用来计算我们从中获取值的工作表中的最后一行。工作表“PERD_POLICY”。该图表基于月份和年份。我现在向当前的 serList 添加了一个新值,直到 2019 年 12 月。但绿色图表的最后一个标签显示 9,66。该值来自 2019 年 10 月。

我想通过下面的图片你会更好地理解。这个显示了最后一个标签的值是什么:

The current label value

另一张图片中选定的值是我想在标签中显示的值,9,75

The graph value I want to show in the label

如果您不明白任何单词,请告诉我,因为我的 Excel 是西类牙语的。勇气-->值(value)点 --> 点

最佳答案

您使用低级ooxml-schemas类的代码仅更新该系列的引用公式。它不会更新图表中的缓存值。

由于当前的apache poi 4.1.1提供XDDFChartData.Series.replaceData要更新图表的数据,我们应该使用它而不是低级别的 ooxml-schemas 类。

让我们通过一个完整的示例来展示如何执行此操作。

我们开始创建一个 ExcelWithChartMar.xlsx ,如下所示:

enter image description here

如您所见,A1:D4 中已经有 1 月到 3 月的图表数据以及显示这些数据的图表。

我们需要知道的是:第一个数据行是1(第0行是标题行),当前最后一个数据行是3。最后一个数据行会增加。类别列为 0 (A),系列列为 1 (B)、2 (C) 和 3 (D) )。请注意,所有索引都是从 0 开始的。

现在我们可以使用 apache poi 4.1.1 运行以下代码:

import java.io.FileInputStream;
import java.io.FileOutputStream;

import org.apache.poi.ss.usermodel.WorkbookFactory;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.xssf.usermodel.*;
import org.apache.poi.xddf.usermodel.chart.*;

class ExcelChangeChartData {

static void updateChartData(XSSFChart chart, XSSFSheet dataSheet,
int firstDataRow, int lastDataRow, int categoryColumn, int[] seriesColumns) {

for (XDDFChartData chartData : chart.getChartSeries()) {
for (int s = 0; s < chartData.getSeriesCount() ; s++) {
XDDFChartData.Series series = chartData.getSeries(s);
if (seriesColumns.length > s) {
XDDFCategoryDataSource category = XDDFDataSourcesFactory.fromStringCellRange(
dataSheet, new CellRangeAddress(firstDataRow, lastDataRow, categoryColumn, categoryColumn));
int seriesColumn = seriesColumns[s];
XDDFNumericalDataSource<Double> values = XDDFDataSourcesFactory.fromNumericCellRange(
dataSheet, new CellRangeAddress(firstDataRow, lastDataRow, seriesColumn, seriesColumn));
series.replaceData(category, values);
series.plot();
}
}
}
}

public static void main(String[] args) throws Exception {

String[] months = new String[]{"Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
int firstDataRow = 1;
int lastDataRow = 3;
int categoryColumn = 0;
int[] seriesColumns = new int[]{1,2,3};

for (int m = 0; m < months.length - 1; m++) {
String monthSource = months[m];
String monthResult = months[m+1];
String filePath = "./ExcelWithChart" + monthSource + ".xlsx";
java.util.Random random = new java.util.Random();
XSSFWorkbook workbook = (XSSFWorkbook)WorkbookFactory.create(new FileInputStream(filePath));
XSSFSheet sheet = workbook.getSheetAt(0);
XSSFRow row = sheet.createRow(lastDataRow + 1);
XSSFCell cell = row.createCell(categoryColumn);
cell.setCellValue(monthResult);
for (int i = 0; i < seriesColumns.length; i++) {
cell = row.createCell(seriesColumns[i]);
cell.setCellValue(random.nextDouble() / 10 + 0.02);
cell.setCellStyle(sheet.getRow(lastDataRow).getCell(seriesColumns[i]).getCellStyle());
}
lastDataRow++;

XSSFDrawing drawing = sheet.createDrawingPatriarch();
XSSFChart chart = drawing.getCharts().get(0);
updateChartData(chart, sheet, firstDataRow, lastDataRow, categoryColumn, seriesColumns);

filePath = "./ExcelWithChart" + monthResult + ".xlsx";
FileOutputStream out = new FileOutputStream(filePath);
workbook.write(out);
out.close();
workbook.close();
}
}
}

这会创建 9 个额外的 Excel 文件 ExcelWithChartApr.xlsx ... ExcelWithChartDec.xlsx,其中每个文件都添加了新月份的数据。

方法updateChartData 使用XDDFChartData.Series.replaceData 方法更新图表数据。

关于java - 如何修改apache poi中的图形标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59785323/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com