[]
Gets or sets whether the axis has a visible title.
This property indicates whether the axis title is displayed. Use
AxisTitle to access and configure the title when this property
is true.
bool HasTitle { get; set; }
Property HasTitle As Boolean
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
IAxis axis = chart.Axes.Item(AxisType.Value, AxisGroup.Primary);
axis.HasTitle = true;
bool hasTitle = axis.HasTitle;