存取圖表在工作表中的位置。你可以使用 EmbeddedChart.modify()
函式更新。
chart = chart.modify().setPosition(5, 5, 0, 0).build(); sheet.updateChart(chart);
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
getAnchorColumn() | Integer | 圖表左側會錨定在這一欄。 |
getAnchorRow() | Integer | 圖表的頂端會固定在這個資料列中。 |
getOffsetX() | Integer | 圖表的左上角會與錨定欄偏移許多像素。 |
getOffsetY() | Integer | 圖表的左上角會與錨定列偏移這麼多像素, |
內容詳盡的說明文件
getAnchorColumn()
圖表左側會錨定在這一欄。
回攻員
Integer
— 1 欄的索引欄 (也就是 C 欄 3)
getAnchorRow()
圖表的頂端會固定在這個資料列中。
回攻員
Integer
:1 列索引的資料列 (也就是第 5 列傳回 5)
getOffsetX()
圖表的左上角會與錨定欄偏移許多像素。
回攻員
Integer
:圖表左上角的水平偏移 (以像素為單位)
getOffsetY()
圖表的左上角會與錨定列偏移這麼多像素,
回攻員
Integer
:圖表左上角的垂直偏移 (以像素為單位)