本文主要是介绍【POI】使用POI在Excel(.xlsx)中生成chart,指定chart位置时,createAnchor方法的偏移量参数(dx1, dy1, dx2, dy2)不生效,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
前提:
①目标文件类型:.xlsx
②POI版本3.17,open xml版本1.3
③使用POI在excel中生成chart,chart的位置是通过下面这个方法来指定的:
XSSFDrawing.createAnchor(int dx1, int dy1, int dx2, int dy2, int col1, int row1, int col2, int row2);
8个参数分别代表左上角和右下角所在单元格的坐标和偏移量
问题:
coding过程中发现前面4个设置偏移量的参数无论如何都不能生效,(尝试过10、100、2222)
原因:
调查了好久奥,最后发现主要原因竟然是偏移量的数值设置得不。。。够。。。大。。。
乘上一个系数就好了,说白了就是单位不一样需要转换,这个系数就是Units.EMU_PER_POINT
具体原因看源码差不多就能明白(org.apache.poi.util.Units.class)
大概意思就是因为open xml的长度单位比较特别,是用English Metric Units (EMUs)来表示的,一个EMU跟像素啊、厘米啊、英尺啊各种单位什么的差的不要太多奥。。。
1cm = 360000EMUs、1px = 9525EMUs。。。
也是蛮有意思的。。。
参考:
https://stackoverflow.com/questions/48567203/apache-poi-xssfclientanchor-not-positioning-picture-with-respect-to-dx1-dy1-dx/48607117#48607117
POI版本:
<dependency><groupId>org.apache.poi</groupId><artifactId>poi</artifactId><version>3.17</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>3.17</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-scratchpad</artifactId><version>3.17</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml-schemas</artifactId><version>3.17</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>ooxml-schemas</artifactId><version>1.3</version></dependency>
实际代码:
/*** create CTPlotArea* @param position int[]{startCol, startRow, endCol, endRow,* xOffsetInStartCell, yOffsetInStartCell, xOffsetInEndCell, yOffsetInEndCell}*/private static CTPlotArea createCTPlotArea(XSSFSheet sheet, int[] position, String chartTitle, boolean isComboChart) {XSSFDrawing drawing = sheet.createDrawingPatriarch();XSSFClientAnchor anchor =drawing.createAnchor(position[4] * Units.EMU_PER_POINT, position[5] * Units.EMU_PER_POINT,position[6] * Units.EMU_PER_POINT, position[7] * Units.EMU_PER_POINT,position[0], position[1], position[2], position[3]);XSSFChart chart = drawing.createChart(anchor);CTChart ctChart = chart.getCTChart();CTPlotArea ctPlotArea = ctChart.getPlotArea();// setting chart titlechart.setTitleText(chartTitle);// 设置图表标题的位置(于图表上方或居中覆盖)ctChart.getTitle().addNewOverlay().setVal(false);ctChart.addNewShowDLblsOverMax().setVal(true);// 单元格没有数据时,该点在图表上为0或不显示ctChart.addNewDispBlanksAs().setVal(STDispBlanksAs.GAP);// setting legendCTLegend ctLegend = ctChart.addNewLegend();ctLegend.addNewLegendPos().setVal(STLegendPos.R);ctLegend.addNewOverlay().setVal(false);return ctPlotArea;}
这篇关于【POI】使用POI在Excel(.xlsx)中生成chart,指定chart位置时,createAnchor方法的偏移量参数(dx1, dy1, dx2, dy2)不生效的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!