ChartFont Object (Word)

Contains the font attributes (font name, font size, color, and so on) for an object chart.

Version Information

Version Added: Word 2007

Remarks

If you do not want to format all the text in an AxisTitle, ChartTitle, DataLabel, or DisplayUnitLabel object the same way, use the Characters property of that object to first return a subset of the text as a ChartCharacters object. Then use the Font property of the ChartCharacters object to return a ChartFont object you can use to format the subset of text, as needed.

Example

The following example formats the title of the first chart as bold. Use the Font property to return the ChartFont object.

With ActiveDocument.InlineShapes(1).Chart 
 .AxisTitle.Font.Bold = True 
End With

See Also

Concepts

ChartFont Object Members

Word Object Model Reference