[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChart.HasTitle

HasTitle Property

HasTitle

Gets or sets whether the chart has a visible title.

This property indicates whether the chart title is displayed.

Declaration
bool HasTitle { get; set; }
Property HasTitle As Boolean
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.HasTitle = true;
bool hasTitle = chart.HasTitle;