存取圖表在工作表中的位置。可以使用 Embedded
函式更新。
const sheet = SpreadsheetApp.getActiveSheet(); const chart = sheet.getCharts()[0]; const modifiedChart = chart.modify().setPosition(5, 5, 0, 0).build(); sheet.updateChart(modifiedChart);
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
get | Integer | 圖表的左側會固定在這個欄中。 |
get | Integer | 圖表的頂端會固定在這個資料列。 |
get | Integer | 圖表的左上角會從錨定欄偏移這麼多像素。 |
get | Integer | 圖表的左上角會從錨定資料列偏移這麼多像素。 |
內容詳盡的說明文件
get Anchor Column()
圖表的左側會固定在這個欄中。
回攻員
Integer
- 1 索引欄 (也就是 C 欄為 3)
get Anchor Row()
圖表的頂端會固定在這個資料列。
回攻員
Integer
- 以 1 為索引的資料列 (也就是第 5 列會傳回 5)
get Offset X()
圖表的左上角會從錨定欄偏移這麼多像素。
回攻員
Integer
:圖表左上角的水平偏移值 (以像素為單位)
get Offset Y()
圖表的左上角會從錨定資料列偏移這麼多像素。
回攻員
Integer
:圖表左上角的垂直偏移值 (以像素為單位)