Class ContainerInfo | Apps Script | Google for Developers (original) (raw)
Class ContainerInfo
Stay organized with collections Save and categorize content based on your preferences.
ContainerInfo
Access the chart's position within a sheet. Can be updated using the [EmbeddedChart.modify()](/apps-script/reference/spreadsheet/embedded-chart#modify%28%29)
function.
const sheet = SpreadsheetApp.getActiveSheet(); const chart = sheet.getCharts()[0]; const modifiedChart = chart.modify().setPosition(5, 5, 0, 0).build(); sheet.updateChart(modifiedChart);
Methods
Method | Return type | Brief description |
---|---|---|
getAnchorColumn() | Integer | The chart's left side is anchored in this column. |
getAnchorRow() | Integer | The chart's top side is anchored in this row. |
getOffsetX() | Integer | The chart's upper left hand corner is offset from the anchor column by this many pixels. |
getOffsetY() | Integer | The chart's upper left hand corner is offset from the anchor row by this many pixels. |
Detailed documentation
getAnchorColumn()
The chart's left side is anchored in this column.
Return
Integer
— 1-indexed column (that is, column C is 3)
getAnchorRow()
The chart's top side is anchored in this row.
Return
Integer
— 1-indexed row (that is, row 5 returns 5)
getOffsetX()
The chart's upper left hand corner is offset from the anchor column by this many pixels.
Return
Integer
— the horizontal offset in pixels for the upper left hand corner of the chart
getOffsetY()
The chart's upper left hand corner is offset from the anchor row by this many pixels.
Return
Integer
— the vertical offset in pixels for the upper left hand corner of the chart
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-12-02 UTC.