Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.03 KB

Excel.Font-graph-object.md

File metadata and controls

45 lines (32 loc) · 1.03 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Font object (Excel Graph)
vbagr10.chm131085
vbagr10.chm131085
Excel.Font
0510e805-48fd-7148-edee-d65dc59f34b4
04/06/2019
medium

Font object (Excel Graph)

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

Remarks

Use the Font property to return the Font object.

Example

The following example sets the title text for the value axis, sets the font to 10-point Bookman, and formats the word "millions" as italic.

With myChart.Axes(xlValue) 
 .HasTitle = True 
 With .AxisTitle 
 .Caption = "Revenue (millions)" 
 .Font.Name = "bookman" 
 .Font.Size = 10 
 .Characters(10, 8).Font.Italic = True
 End With 
End With

See also

[!includeSupport and feedback]