Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 789 Bytes

Excel.Axis.AxisTitle.md

File metadata and controls

40 lines (25 loc) · 789 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Axis.AxisTitle property (Excel)
vbaxl10.chm561075
vbaxl10.chm561075
Excel.Axis.AxisTitle
33ba6b94-189b-e9d0-a153-af028380a58a
04/13/2019
medium

Axis.AxisTitle property (Excel)

Returns an AxisTitle object that represents the title of the specified axis. Read-only.

Syntax

expression.AxisTitle

expression A variable that represents an Axis object.

Example

This example adds an axis label to the category axis on Chart1.

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

[!includeSupport and feedback]