ChartFont resource type

Namespace: microsoft.graph

This object represents the font attributes (font name, font size, color, etc.) for a chart object.

Methods

Method Return Type Description
Get ChartFont WorkbookChartFont Read properties and relationships of chartFont object.
Update WorkbookChartFont Update ChartFont object.

Properties

Property Type Description
bold boolean Represents the bold status of font.
color string HTML color code representation of the text color. for example #FF0000 represents Red.
italic boolean Represents the italic status of the font.
name string Font name (for example "Calibri")
size double Size of the font (for example 11)
underline string Type of underline applied to the font. The possible values are: None, Single.

Relationships

None

JSON representation

Here's a JSON representation of the resource.

{
  "bold": true,
  "color": "string",
  "italic": true,
  "name": "string",
  "size": 1024,
  "underline": "string"
}