[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IAxis.HasTitle

HasTitle Property

HasTitle

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.

Declaration
bool HasTitle { get; set; }
Property HasTitle As Boolean
Examples
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;