Font Property

Applies To

AxisTitle object, ChartArea object, ChartTitle object, DataLabel object, DataLabels collection object, DataSheet object, DataTable object, Legend object, LegendEntry object, TickLabels object.

Description

Returns a Font object that represents the font of the specified object. Read-only.

See Also

Font object.

Example

This example sets the font in the chart title to 14-point bold italic.

With myChart.ChartTitle.Font
    .Size = 14
    .Bold = True
    .Italic = True
End With