为了账号安全,请及时绑定邮箱和手机立即绑定

POI 4.1.0 折线图 y 系列显示错误的图例

POI 4.1.0 折线图 y 系列显示错误的图例

qq_遁去的一_1 2023-10-13 16:33:47
如何在 y 系列上创建具有单个图例的折线图,而不是在 x 系列上显示多个图例int rows = numberOfRows - 1;int cols = headers.size();XSSFDrawing drawing = sheet.createDrawingPatriarch();XSSFClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, 5, 10, 15);XSSFChart chart = drawing.createChart(anchor);chart.displayBlanksAs(DisplayBlanks.GAP);XDDFChartLegend legend = chart.getOrAddLegend();legend.setPosition(LegendPosition.TOP_RIGHT);// Use a category axis for the bottom axis.XDDFCategoryAxis bottomAxis = chart.createCategoryAxis(AxisPosition.BOTTOM);bottomAxis.setOrientation(AxisOrientation.MAX_MIN);bottomAxis.setTitle("Date");XDDFValueAxis rightAxis = chart.createValueAxis(AxisPosition.RIGHT);rightAxis.setTitle("Rates");rightAxis.setCrosses(AxisCrosses.AUTO_ZERO);XDDFChartLegend chartLegend = chart.getOrAddLegend();chartLegend.setPosition(LegendPosition.TOP_RIGHT);chartLegend.setOverlay(false);XDDFLineChartData lineChartData = (XDDFLineChartData) chart.createData(ChartTypes.LINE, bottomAxis, rightAxis);XDDFDataSource<String> xs = XDDFDataSourcesFactory.fromStringCellRange(sheet, new CellRangeAddress(1, rows, 0, 0));for (int col = 1; col < cols; col++) {    XDDFNumericalDataSource<Double> ys1 = XDDFDataSourcesFactory.fromNumericCellRange(sheet, new CellRangeAddress(1, rows, col, col));    XDDFLineChartData.Series series1 = (XDDFLineChartData.Series) lineChartData.addSeries(xs, ys1);    series1.setTitle(headers.get(col), null);    series1.setSmooth(false);    series1.setMarkerStyle(MarkerStyle.NONE);}chart.plot(lineChartData);上图显示了我当前的绘图折线图,y 系列预计只有 1 个图例,但显示了多个上图折线图是使用 Excel 绘制的,y 系列仅显示 1 个图例
查看完整描述

1 回答

?
翻过高山走不出你

TA贡献1875条经验 获得超3个赞

有一个设置可以改变图表中同系列数据标记的颜色。请参阅:改变图表中同系列数据标记的颜色。false默认情况下最多为Excel 2007。现在Microsoft决定将该设置设为true默认值。false因此,如果您不想要它,则需要明确设置。


在你的情况下:


...

XDDFLineChartData lineChartData = (XDDFLineChartData) chart.createData(ChartTypes.LINE, bottomAxis, rightAxis);

lineChartData.setVaryColors(false);

...


查看完整回答
反对 回复 2023-10-13
  • 1 回答
  • 0 关注
  • 147 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信