[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChart.ChartTitle

ChartTitle Property

ChartTitle

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.

Declaration
IChartTitle ChartTitle { get; }
ReadOnly Property ChartTitle As IChartTitle
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.ChartTitle.Text = "Sales Analysis";
IChartTitle title = chart.ChartTitle;