Microsoft Graph · Schema

microsoft.graph.workbookChart

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphworkbookchart-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.workbookChart",
  "title": "microsoft.graph.workbookChart",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "workbookChart",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "height": {
          "oneOf": [
            {
              "type": "number",
              "format": "double",
              "nullable": true
            },
            {
              "type": "string",
              "nullable": true
            },
            {
              "$ref": "#/components/schemas/ReferenceNumeric"
            }
          ],
          "description": "Represents the height, in points, of the chart object."
        },
        "left": {
          "oneOf": [
            {
              "type": "number",
              "format": "double",
              "nullable": true
            },
            {
              "type": "string",
              "nullable": true
            },
            {
              "$ref": "#/components/schemas/ReferenceNumeric"
            }
          ],
          "description": "The distance, in points, from the left side of the chart to the worksheet origin."
        },
        "name": {
          "type": "string",
          "description": "Represents the name of a chart object.",
          "nullable": true
        },
        "top": {
          "oneOf": [
            {
              "type": "number",
              "format": "double",
              "nullable": true
            },
            {
              "type": "string",
              "nullable": true
            },
            {
              "$ref": "#/components/schemas/ReferenceNumeric"
            }
          ],
          "description": "Represents the distance, in points, from the top edge of the object to the top of row 1 (on a worksheet) or the top of the chart area (on a chart)."
        },
        "width": {
          "oneOf": [
            {
              "type": "number",
              "format": "double",
              "nullable": true
            },
            {
              "type": "string",
              "nullable": true
            },
            {
              "$ref": "#/components/schemas/ReferenceNumeric"
            }
          ],
          "description": "Represents the width, in points, of the chart object."
        },
        "axes": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.workbookChartAxes"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Represents chart axes. Read-only.",
          "x-ms-navigationProperty": true
        },
        "dataLabels": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.workbookChartDataLabels"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Represents the data labels on the chart. Read-only.",
          "x-ms-navigationProperty": true
        },
        "format": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.workbookChartAreaFormat"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Encapsulates the format properties for the chart area. Read-only.",
          "x-ms-navigationProperty": true
        },
        "legend": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.workbookChartLegend"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Represents the legend for the chart. Read-only.",
          "x-ms-navigationProperty": true
        },
        "series": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.workbookChartSeries"
          },
          "description": "Represents either a single series or collection of series in the chart. Read-only.",
          "x-ms-navigationProperty": true
        },
        "title": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.workbookChartTitle"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Represents the title of the specified chart, including the text, visibility, position and formatting of the title. Read-only.",
          "x-ms-navigationProperty": true
        },
        "worksheet": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.workbookWorksheet"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The worksheet containing the current chart. Read-only.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.workbookChart"
}