[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChartTitle.Text

Text Property

Text

Gets or sets the text of the chart title.

Use this property to retrieve the text currently displayed in the chart title.

Declaration
string Text { get; set; }
Property Text As String
Examples
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;