{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.workbookChartAxis", "title": "microsoft.graph.workbookChartAxis", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "workbookChartAxis", "required": [ "@odata.type" ], "type": "object", "properties": { "majorUnit": { "description": "Represents the interval between two major tick marks. Can be set to a numeric value or an empty string. The returned value is always a number." }, "maximum": { "description": "Represents the maximum value on the value axis. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number." }, "minimum": { "description": "Represents the minimum value on the value axis. Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number." }, "minorUnit": { "description": "Represents the interval between two minor tick marks. 'Can be set to a numeric value or an empty string (for automatic axis values). The returned value is always a number." }, "format": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.workbookChartAxisFormat" }, { "type": "object", "nullable": true } ], "description": "Represents the formatting of a chart object, which includes line and font formatting. Read-only.", "x-ms-navigationProperty": true }, "majorGridlines": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.workbookChartGridlines" }, { "type": "object", "nullable": true } ], "description": "Returns a gridlines object that represents the major gridlines for the specified axis. Read-only.", "x-ms-navigationProperty": true }, "minorGridlines": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.workbookChartGridlines" }, { "type": "object", "nullable": true } ], "description": "Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only.", "x-ms-navigationProperty": true }, "title": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.workbookChartAxisTitle" }, { "type": "object", "nullable": true } ], "description": "Represents the axis title. Read-only.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.workbookChartAxis" }