{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.workbookChartFont", "title": "microsoft.graph.workbookChartFont", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "workbookChartFont", "required": [ "@odata.type" ], "type": "object", "properties": { "bold": { "type": "boolean", "description": "Indicates whether the fond is bold.", "nullable": true }, "color": { "type": "string", "description": "The HTML color code representation of the text color. For example #FF0000 represents Red.", "nullable": true }, "italic": { "type": "boolean", "description": "Indicates whether the fond is italic.", "nullable": true }, "name": { "type": "string", "description": "The font name. For example 'Calibri'.", "nullable": true }, "size": { "oneOf": [ { "type": "number", "format": "double", "nullable": true }, { "type": "string", "nullable": true }, { "$ref": "#/components/schemas/ReferenceNumeric" } ], "description": "The size of the font. For example, 11." }, "underline": { "type": "string", "description": "The type of underlining applied to the font. The possible values are: None, Single.", "nullable": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.workbookChartFont" }