Class ContainerInfo

容器信息

访问图表在工作表中的位置。可使用 EmbeddedChart.modify() 函数进行更新。

const sheet = SpreadsheetApp.getActiveSheet();
const chart = sheet.getCharts()[0];
const modifiedChart = chart.modify().setPosition(5, 5, 0, 0).build();
sheet.updateChart(modifiedChart);

方法

方法返回类型简介
getAnchorColumn()Integer图表的左侧固定在此列中。
getAnchorRow()Integer图表的顶部会锚定在此行中。
getOffsetX()Integer图表的左上角相对于锚定列的偏移量为此值。
getOffsetY()Integer图表的左上角相对于锚定行偏移了这么多像素。

详细文档

getAnchorColumn()

图表的左侧固定在此列中。

返回

Integer - 从 1 开始编号的列(即,C 列为 3)


getAnchorRow()

图表的顶部会锚定在此行中。

返回

Integer - 从 1 开始编号的行(即,第 5 行返回 5)


getOffsetX()

图表的左上角相对于锚定列的偏移量为此值。

返回

Integer - 图表左上角的水平偏移量(以像素为单位)


getOffsetY()

图表的左上角相对于锚定行偏移了这么多像素。

返回

Integer - 图表左上角的垂直偏移量(以像素为单位)