Advanced Excel · Schema

Chart

An Excel chart.

AutomationBusiness IntelligenceData AnalysisData ProcessingExcelMicrosoftSpreadsheets

Properties

Name Type Description
id string Chart identifier.
name string Chart name.
chartType string Chart type.
height number Height in points.
width number Width in points.
View JSON Schema on GitHub

JSON Schema

excel-api-chart-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Chart",
  "description": "An Excel chart.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Chart identifier.",
      "example": "chart1"
    },
    "name": {
      "type": "string",
      "description": "Chart name.",
      "example": "SalesChart"
    },
    "chartType": {
      "type": "string",
      "description": "Chart type.",
      "example": "ColumnClustered"
    },
    "height": {
      "type": "number",
      "description": "Height in points.",
      "example": 300
    },
    "width": {
      "type": "number",
      "description": "Width in points.",
      "example": 500
    }
  }
}