[]
Gets or sets whether the chart has a visible title.
This property indicates whether the chart title is displayed.
bool HasTitle { get; set; }
Property HasTitle As Boolean
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.HasTitle = true;
bool hasTitle = chart.HasTitle;