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:圖表左上角的垂直偏移值 (以像素為單位)