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);
Methods
שיטה | סוג הערך שמוחזר | תיאור קצר |
getAnchorColumn() | Integer | הצד השמאלי של התרשים מעוגן בעמודה הזו. |
getAnchorRow() | Integer | החלק העליון של התרשים מעוגן בשורה הזו. |
getOffsetX() | Integer | הפינה השמאלית העליונה של התרשים מוסטת מעמודת העוגן במספר הפיקסלים הזה. |
getOffsetY() | Integer | הפינה השמאלית העליונה של התרשים מוסטת מהשורה המעוגנת במספר הפיקסלים הזה. |
תיעוד מפורט
getAnchorColumn()
הצד השמאלי של התרשים מעוגן בעמודה הזו.
חזרה
Integer
– עמודה עם אינדקס שמתחיל ב-1 (כלומר, עמודה C היא 3).
getAnchorRow()
החלק העליון של התרשים מעוגן בשורה הזו.
חזרה
Integer
— שורה עם אינדקס שמתחיל מ-1 (כלומר, שורה 5 מחזירה 5).
getOffsetX()
הפינה השמאלית העליונה של התרשים מוסטת מעמודת העוגן במספר הפיקסלים הזה.
חזרה
Integer
— ההיסט האופקי בפיקסלים של הפינה השמאלית העליונה של התרשים.
getOffsetY()
הפינה השמאלית העליונה של התרשים מוסטת מהשורה המעוגנת במספר הפיקסלים הזה.
חזרה
Integer
– ההיסט האנכי בפיקסלים של הפינה השמאלית העליונה של התרשים.
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-08-13 (שעון UTC).
[null,null,["עדכון אחרון: 2025-08-13 (שעון UTC)."],[[["\u003cp\u003e\u003ccode\u003eContainerInfo\u003c/code\u003e allows you to access and update an embedded chart's position within a Google Sheet.\u003c/p\u003e\n"],["\u003cp\u003eYou can get the chart's anchor column and row, which determine its main positioning.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eOffsetX\u003c/code\u003e and \u003ccode\u003eOffsetY\u003c/code\u003e properties provide pixel-level control over the chart's placement relative to the anchor point.\u003c/p\u003e\n"],["\u003cp\u003eUse the \u003ccode\u003emodify()\u003c/code\u003e and \u003ccode\u003esetPosition()\u003c/code\u003e functions along with \u003ccode\u003eupdateChart()\u003c/code\u003e to change the chart's position programmatically.\u003c/p\u003e\n"]]],[],null,["# Class ContainerInfo\n\nContainerInfo\n\nAccess the chart's position within a sheet. Can be updated using the [EmbeddedChart.modify()](/apps-script/reference/spreadsheet/embedded-chart#modify()) function.\n\n```javascript\nconst sheet = SpreadsheetApp.getActiveSheet();\nconst chart = sheet.getCharts()[0];\nconst modifiedChart = chart.modify().setPosition(5, 5, 0, 0).build();\nsheet.updateChart(modifiedChart);\n``` \n\n### Methods\n\n| Method | Return type | Brief description |\n|-----------------------------------------|-------------|------------------------------------------------------------------------------------------|\n| [getAnchorColumn()](#getAnchorColumn()) | `Integer` | The chart's left side is anchored in this column. |\n| [getAnchorRow()](#getAnchorRow()) | `Integer` | The chart's top side is anchored in this row. |\n| [getOffsetX()](#getOffsetX()) | `Integer` | The chart's upper left hand corner is offset from the anchor column by this many pixels. |\n| [getOffsetY()](#getOffsetY()) | `Integer` | The chart's upper left hand corner is offset from the anchor row by this many pixels. |\n\nDetailed documentation\n----------------------\n\n### `get``Anchor``Column()`\n\nThe chart's left side is anchored in this column.\n\n#### Return\n\n\n`Integer` --- 1-indexed column (that is, column C is 3).\n\n*** ** * ** ***\n\n### `get``Anchor``Row()`\n\nThe chart's top side is anchored in this row.\n\n#### Return\n\n\n`Integer` --- 1-indexed row (that is, row 5 returns 5).\n\n*** ** * ** ***\n\n### `get``Offset``X()`\n\nThe chart's upper left hand corner is offset from the anchor column by this many pixels.\n\n#### Return\n\n\n`Integer` --- The horizontal offset in pixels for the upper left hand corner of the chart.\n\n*** ** * ** ***\n\n### `get``Offset``Y()`\n\nThe chart's upper left hand corner is offset from the anchor row by this many pixels.\n\n#### Return\n\n\n`Integer` --- The vertical offset in pixels for the upper left hand corner of the chart."]]