Class ContainerInfo

ContainerInfo

Access the chart's position within a sheet. Can be updated using the EmbeddedChart.modify() function.

chart = chart.modify().setPosition(5, 5, 0, 0).build();
sheet.updateChart(chart);

Methods

MethodReturn typeBrief description
getAnchorColumn()IntegerThe chart's left side is anchored in this column.
getAnchorRow()IntegerThe chart's top side is anchored in this row.
getOffsetX()IntegerThe chart's upper left hand corner is offset from the anchor column by this many pixels.
getOffsetY()IntegerThe 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