Microsoft Graph · Schema

microsoft.graph.workbookChartSeries

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphworkbookchartseries-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.workbookChartSeries",
  "title": "microsoft.graph.workbookChartSeries",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "workbookChartSeries",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "The name of a series in a chart.",
          "nullable": true
        },
        "format": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.workbookChartSeriesFormat"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The formatting of a chart series, which includes fill and line formatting. Read-only.",
          "x-ms-navigationProperty": true
        },
        "points": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.workbookChartPoint"
          },
          "description": "A collection of all points in the series. Read-only.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.workbookChartSeries"
}