[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IAxis.AxisTitle

AxisTitle Property

AxisTitle

Gets the title of the axis.

Declaration
IAxisTitle AxisTitle { get; }
ReadOnly Property AxisTitle As IAxisTitle
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;
IAxisTitle title = axis.AxisTitle;
title.Text = "Sales";