1金币
本帖最后由 Clark.Pan 于 2023-1-10 13:42 编辑
用gcexcel创建图表时需要设置图表到左侧与上侧边界的距离,如下代码
IShape shape = chartWorksheet.getShapes().addChart(ChartType.ColumnClustered, left, top, width, height);
其中的left和top需要从源表格的图表中获取,所以请问要如何用gcexcel获取图表与左侧与上侧边界的距离?
|
最佳答案
查看完整内容
shape.getLeft()获取左边距
shape.getTop()获取右边距
|