Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 488 Bytes

9ecc48d3-fd86-e185-a69f-0676230b3194.md

File metadata and controls

25 lines (13 loc) · 488 Bytes

HasTitle Property

True if the axis or chart has a visible title. Read/write Boolean.

Remarks

An axis title is represented by an AxisTitle object.

A chart title is represented by a ChartTitle object.

Example

This example adds an axis label to the category axis.

With myChart.Axes(xlCategory) 
 .HasTitle = True 
 .AxisTitle.Text = "July Sales" 
End With