[]
在GcExcel中,floor表示三维图表的基底。使用floor作为图表对象,可以快速有效地格式化三维图表的区域。
用户可以设置基底的线条和填充格式及其厚度。
要在图表中设置基底,请参考以下示例代码。
IShape shape = worksheet.getShapes().addChart(ChartType.Column3D, 250, 20, 350, 250);
worksheet.getRange("A1:D6").setValue(
new Object[][] { { null, "S1", "S2", "S3" }, { "Item1", 10, 25, 25 }, { "Item2", -51, -36, 27 },
{ "Item3", 52, -85, -30 }, { "Item4", 22, 65, 65 }, { "Item5", 23, 69, 69 } });
shape.getChart().getSeriesCollection().add(worksheet.getRange("A1:D6"), RowCol.Columns, true, true);
shape.getChart().getFloor().setThickness(5);
shape.getChart().getFloor().getFormat().getFill().getColor().setRGB(Color.GetYellow());
shape.getChart().getFloor().getFormat().getLine().getColor().setRGB(Color.GetRed());