[]
Gets the IChartTitle object that represents the title of the chart.
Use the returned title object to read or modify chart title properties, such as the title text and formatting.
IChartTitle ChartTitle { get; }
ReadOnly Property ChartTitle As IChartTitle
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.ChartTitle.Text = "Sales Analysis";
IChartTitle title = chart.ChartTitle;