April 2006
Beginner
1114 pages
98h 16m
English
chartarea.Font
Returns the Font object representing the formatting of all the text on the chart. For example, the following code makes all of the caption, label, and legend text on the active chart bold:
Sub ChartAreaFont( )
Dim chrt As Chart, f As Font
' Get the chart.
Set chrt = ActiveChart
' Get the chart area font.
Set f = chrt.ChartArea.Font
f.Bold = True
End SubRead now
Unlock full access