[]
Gets or sets the text of the chart title.
Use this property to retrieve the text currently displayed in the chart title.
string Text { get; set; }
Property Text As String
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.ChartTitle.Text = "Sales Analysis";
IChartTitle title = chart.ChartTitle;
string text = title.Text;