Google Sheets

gs_add_chart

Add a chart to a sheet. Specify chart type, data range, and anchor position. The chart is overlaid on the sheet.

Remote node2flow/google-sheets

Other tools also called gs_add_chart? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "Chart title"
    },
    "sheet_id": {
      "type": "number",
      "description": "Sheet ID where the chart will be placed"
    },
    "chart_type": {
      "type": "string",
      "description": "Chart type: \"BAR\", \"LINE\", \"AREA\", \"COLUMN\", \"SCATTER\", \"COMBO\", \"STEPPED_AREA\""
    },
    "data_sheet_id": {
      "type": "number",
      "description": "Sheet ID containing the data for the chart"
    },
    "spreadsheet_id": {
      "type": "string",
      "description": "The spreadsheet ID"
    },
    "anchor_row_index": {
      "type": "number",
      "description": "Row where chart top-left corner is placed (0-based, default: 0)"
    },
    "data_end_row_index": {
      "type": "number",
      "description": "End row of data range (0-based exclusive)"
    },
    "anchor_column_index": {
      "type": "number",
      "description": "Column where chart top-left corner is placed (0-based, default: 0)"
    },
    "data_start_row_index": {
      "type": "number",
      "description": "Start row of data range (0-based inclusive)"
    },
    "data_end_column_index": {
      "type": "number",
      "description": "End column of data range (0-based exclusive)"
    },
    "data_start_column_index": {
      "type": "number",
      "description": "Start column of data range (0-based inclusive)"
    }
  }
}