[]
        
(Showing Draft Content)

图形区

在GcExcel Java中,您可以使用IPlotArea接口的方法,根据您的首选项在图表中设置绘图区域。

配置绘图区域格式

您可以通过使用IChart界面的getPlotArea方法修改其填充颜色、线条颜色和其他基本属性来配置绘图区域格式。

要为工作表中插入的图表配置绘图区域格式,请参考以下示例代码。

IShape shape = worksheet.getShapes().addChart(ChartType.ColumnClustered, 250, 20, 360, 230);
worksheet.getRange("A1:D6").setValue(new Object[][] { { null, "S1", "S2", "S3" }, { "Item1", 10, 25, 25 },
        { "Item2", -51, 36, 27 }, { "Item3", 52, 50, -30 }, { "Item4", 22, 65, 30 }, { "Item5", 23, 40, 69 } });
shape.getChart().getSeriesCollection().add(worksheet.getRange("A1:D6"), RowCol.Columns, true, true);

IPlotArea plotarea = shape.getChart().getPlotArea();
        
// Format.
plotarea.getFormat().getFill().getColor().setRGB(Color.GetLightGray());
plotarea.getFormat().getLine().getColor().setRGB(Color.GetGray());