AutoScaleFont Property Example
This example adds a title to embedded chart one on the active worksheet, and it causes the title font to remain the same size whenever the chart size changes.
With ActiveSheet.ChartObjects(1).Chart
.HasTitle = True
.ChartTitle.Text = "1996 sales"
.ChartTitle.AutoScaleFont = False
End With