Microsoft Graph · Schema

microsoft.graph.workbookChartDataLabels

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphworkbookchartdatalabels-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.workbookChartDataLabels",
  "title": "microsoft.graph.workbookChartDataLabels",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "workbookChartDataLabels",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "position": {
          "type": "string",
          "description": "DataLabelPosition value that represents the position of the data label. The possible values are: None, Center, InsideEnd, InsideBase, OutsideEnd, Left, Right, Top, Bottom, BestFit, Callout.",
          "nullable": true
        },
        "separator": {
          "type": "string",
          "description": "String that represents the separator used for the data labels on a chart.",
          "nullable": true
        },
        "showBubbleSize": {
          "type": "boolean",
          "description": "Boolean value that represents whether the data label bubble size is visible.",
          "nullable": true
        },
        "showCategoryName": {
          "type": "boolean",
          "description": "Boolean value that represents whether the data label category name is visible.",
          "nullable": true
        },
        "showLegendKey": {
          "type": "boolean",
          "description": "Boolean value that represents whether the data label legend key is visible.",
          "nullable": true
        },
        "showPercentage": {
          "type": "boolean",
          "description": "Boolean value that represents whether the data label percentage is visible.",
          "nullable": true
        },
        "showSeriesName": {
          "type": "boolean",
          "description": "Boolean value that represents whether the data label series name is visible.",
          "nullable": true
        },
        "showValue": {
          "type": "boolean",
          "description": "Boolean value that represents whether the data label value is visible.",
          "nullable": true
        },
        "format": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.workbookChartDataLabelFormat"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Represents the format of chart data labels, which includes fill and font formatting. Read-only.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.workbookChartDataLabels"
}