java - 对于Apache poi折线图,如何使第一列不显示在y轴上

标签 java excel charts apache-poi axis

我使用的poi版本是4.1.1。 现在我想让第一列不显示在 y Axis 上,这意味着我想在 y Axis 和第一列之间添加一些空间。 我注意到 x Axis 上有一个选项“Axis 位置”,当它设置为“刻度线之间”时,它将按我想要的方式工作。 但我不知道如何使用 apache-poi 来实现它。可以实现吗?

here is the "Asis position in excel"

now the line chart looks like

what I want

谢谢大家!!!

以下是 Apache 网站上的代码示例:

public class LineChart {

    public static void main(String[] args) throws IOException {
        try (XSSFWorkbook wb = new XSSFWorkbook()) {
            XSSFSheet sheet = wb.createSheet("linechart");
            final int NUM_OF_ROWS = 3;
            final int NUM_OF_COLUMNS = 10;

            // Create a row and put some cells in it. Rows are 0 based.
            Row row;
            Cell cell;
            for (int rowIndex = 0; rowIndex < NUM_OF_ROWS; rowIndex++) {
                row = sheet.createRow((short) rowIndex);
                for (int colIndex = 0; colIndex < NUM_OF_COLUMNS; colIndex++) {
                    cell = row.createCell((short) colIndex);
                    cell.setCellValue(colIndex * (rowIndex + 1.0));
                }
            }

            XSSFDrawing drawing = sheet.createDrawingPatriarch();
            XSSFClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, 5, 10, 15);

            XSSFChart chart = drawing.createChart(anchor);
            XDDFChartLegend legend = chart.getOrAddLegend();
            legend.setPosition(LegendPosition.BOTTOM);

            // Use a category axis for the bottom axis.
            XDDFCategoryAxis bottomAxis = chart.createCategoryAxis(AxisPosition.BOTTOM);
            //bottomAxis.setTitle("x"); // https://stackoverflow.com/questions/32010765
            XDDFValueAxis leftAxis = chart.createValueAxis(AxisPosition.LEFT);
            //leftAxis.setTitle("f(x)");
            leftAxis.setCrosses(AxisCrosses.AUTO_ZERO);


            XDDFDataSource<Double> xs = XDDFDataSourcesFactory.fromNumericCellRange(sheet, new CellRangeAddress(0, 0, 0, NUM_OF_COLUMNS - 1));
            XDDFNumericalDataSource<Double> ys1 = XDDFDataSourcesFactory.fromNumericCellRange(sheet, new CellRangeAddress(1, 1, 0, NUM_OF_COLUMNS - 1));
            XDDFNumericalDataSource<Double> ys2 = XDDFDataSourcesFactory.fromNumericCellRange(sheet, new CellRangeAddress(2, 2, 0, NUM_OF_COLUMNS - 1));

            XDDFLineChartData data = (XDDFLineChartData) chart.createData(ChartTypes.LINE, bottomAxis, leftAxis);
            XDDFLineChartData.Series series1 = (XDDFLineChartData.Series) data.addSeries(xs, ys1);
            series1.setTitle("a", null); // https://stackoverflow.com/questions/21855842
            //series1.setSmooth(false); // https://stackoverflow.com/questions/29014848
            series1.setMarkerStyle(MarkerStyle.NONE); // https://stackoverflow.com/questions/39636138
            XDDFLineChartData.Series series2 = (XDDFLineChartData.Series) data.addSeries(xs, ys2);
            series2.setTitle("b", null);
            //series2.setSmooth(true);
            //series2.setMarkerSize((short) 6);
            series2.setMarkerStyle(MarkerStyle.NONE); // https://stackoverflow.com/questions/39636138

            CTBoolean ctBoolean = CTBoolean.Factory.newInstance();
            ctBoolean.setVal(false);
            CTPlotArea plotArea = chart.getCTChart().getPlotArea();
            chart.getCTChartSpace().setRoundedCorners(ctBoolean);
            for (CTLineSer ser : plotArea.getLineChartArray()[0].getSerArray()) {
                CTDLbls ctdLbls = ser.addNewDLbls();

                ctdLbls.setShowSerName(ctBoolean);
                ctdLbls.setShowLegendKey(ctBoolean);
                ctdLbls.setShowLeaderLines(ctBoolean);
                ctdLbls.setShowCatName(ctBoolean);
                CTDLblPos ctdLblPos = CTDLblPos.Factory.newInstance();
                ctdLblPos.setVal(STDLblPos.CTR);
                CTDLblPos.Factory.newInstance();
                ctdLbls.setDLblPos(ctdLblPos);
            }

            chart.plot(data);

            // if your series have missing values like https://stackoverflow.com/questions/29014848
            // chart.displayBlanksAs(DisplayBlanks.GAP);

            // https://stackoverflow.com/questions/24676460
            solidLineSeries(data, 0, PresetColor.LIGHT_GREEN);
            solidLineSeries(data, 1, PresetColor.DARK_RED);

            // Write the output to a file
            try (FileOutputStream fileOut = new FileOutputStream("ooxml-line-chart.xlsx")) {
                wb.write(fileOut);
            }
        }
    }
    //CTPresetLineDashProperties
    private static void solidLineSeries(XDDFChartData data, int index, PresetColor color) {
        XDDFSolidFillProperties fill = new XDDFSolidFillProperties(XDDFColor.from(color));
        XDDFLineProperties line = new XDDFLineProperties();
        if (index == 0) {
            line.setPresetDash(new XDDFPresetLineDash(PresetLineDash.DOT));
        }
        line.setFillProperties(fill);
        XDDFChartData.Series series = data.getSeries().get(index);
        XDDFShapeProperties properties = series.getShapeProperties();
        if (properties == null) {
            properties = new XDDFShapeProperties();
        }
        properties.setLineProperties(line);
        series.setShapeProperties(properties);
    }
}

最佳答案

默认情况下,值 Axis 和类别 Axis 在类别点上精确交叉。因此,如果值 Axis 在点 0 处与类别 Axis 相交,那么它看起来就像您现在的结果。

但是如果x轴是类别 Axis ,那么有一个设置XDDFValueAxis.setCrossBetween 。如果设置为 AxisCrossBetween.BETWEEN那么值 Axis 与类别点之间的类别 Axis 相交。这看起来如你所愿。

所以在你的情况下:

...
            // Use a category axis for the bottom axis.
            XDDFCategoryAxis bottomAxis = chart.createCategoryAxis(AxisPosition.BOTTOM);
            //bottomAxis.setTitle("x"); // https://stackoverflow.com/questions/32010765
            XDDFValueAxis leftAxis = chart.createValueAxis(AxisPosition.LEFT);
            //leftAxis.setTitle("f(x)");
            leftAxis.setCrosses(AxisCrosses.AUTO_ZERO);

            leftAxis.setCrossBetween(AxisCrossBetween.BETWEEN);
...

顺便说一句:您应该摆脱不推荐使用的方法。

例如get...Array() ooxml-schemas的方法已弃用。要么使用 get...Array(item) 从数组中获取具体项目或者你会得到 List使用get...List() .

就您而言:

...
            //for (CTLineSer ser : plotArea.getLineChartArray()[0].getSerArray()) {
            for (CTLineSer ser : plotArea.getLineChartArray(0).getSerList()) {
...

还有XDDFChartData.getSeries()已弃用。如果您需要一个系列,请使用 XDDFChartData.getSeries(index)

就您而言:

...
        //XDDFChartData.Series series = data.getSeries().get(index);
        XDDFChartData.Series series = data.getSeries(index);
...

关于java - 对于Apache poi折线图,如何使第一列不显示在y轴上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60387741/

相关文章:

java - 如果满足条件,则打印数组列表的选定部分

javascript - 向服务器发出 JSON POST 请求,收到二进制响应(Excel 文件),如何下载?

excel - 格式化助记码到日期,即 "2016m2"到 "Feb-16"

php - 什么是好的免费 PHP 图表套件?

java - Windows Server 2008 环境中 JBoss AS 安装的操作系统选择

java - 无法在 Neo4j JAVA 中执行密码匹配查询

java - Flutter Java android从/app_flutter文件夹中的文件获取数据

Python Openpyxl 在 xlsx 中找不到数字

javascript - 您如何强制 Google Charts vAxes 渲染?

javascript - R 中的 googleVis 数据类型转换似乎不起作用