{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.workbookChartLegend",
"title": "microsoft.graph.workbookChartLegend",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "workbookChartLegend",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"overlay": {
"type": "boolean",
"description": "Indicates whether the chart legend should overlap with the main body of the chart.",
"nullable": true
},
"position": {
"type": "string",
"description": "Represents the position of the legend on the chart. The possible values are: Top, Bottom, Left, Right, Corner, Custom.",
"nullable": true
},
"visible": {
"type": "boolean",
"description": "Indicates whether the chart legend is visible."
},
"format": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.workbookChartLegendFormat"
},
{
"type": "object",
"nullable": true
}
],
"description": "Represents the formatting of a chart legend, which includes fill and font formatting. Read-only.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.workbookChartLegend"
}