expression.Bold
expression Required. An expression that returns one of the above objects.
Example
This example sets font properties for the specified axis in the chart workspace.
Sub SetAxisFont()
Dim axs
Set axs = ChartSpace1.Charts(0).Axes(1)
axs.Font.Name = "Arial"
axs.Font.Size = 8
axs.Font.Bold = True
End Sub