Microsoft Graph · Schema

microsoft.graph.workbookChartTitle

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphworkbookcharttitle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.workbookChartTitle",
  "title": "microsoft.graph.workbookChartTitle",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "workbookChartTitle",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "overlay": {
          "type": "boolean",
          "description": "Indicates whether the chart title will overlay the chart or not.",
          "nullable": true
        },
        "text": {
          "type": "string",
          "description": "The title text of the chart.",
          "nullable": true
        },
        "visible": {
          "type": "boolean",
          "description": "Indicates whether the chart title is visible."
        },
        "format": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.workbookChartTitleFormat"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The formatting of a chart title, which includes fill and font formatting. Read-only.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.workbookChartTitle"
}