Excel.Interfaces.ChartFontData interface
An interface describing the data returned by calling chartFont.toJSON()
.
Properties
bold | Represents the bold status of font. |
color | HTML color code representation of the text color (e.g., #FF0000 represents Red). |
italic | Represents the italic status of the font. |
name | Font name (e.g., "Calibri") |
size | Size of the font (e.g., 11) |
underline | Type of underline applied to the font. See |
Property Details
bold
Represents the bold status of font.
bold?: boolean;
Property Value
boolean
Remarks
color
HTML color code representation of the text color (e.g., #FF0000 represents Red).
color?: string;
Property Value
string
Remarks
italic
Represents the italic status of the font.
italic?: boolean;
Property Value
boolean
Remarks
name
size
underline
Type of underline applied to the font. See Excel.ChartUnderlineStyle
for details.
underline?: Excel.ChartUnderlineStyle | "None" | "Single";
Property Value
Excel.ChartUnderlineStyle | "None" | "Single"
Remarks
Office Add-ins