[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChartTitle.IncludeInLayout

IncludeInLayout Property

IncludeInLayout

Gets or sets whether the chart title is included in the chart layout.

If this property is true, the chart title occupies chart layout space when the chart layout is determined. The default value is true.

Declaration
bool IncludeInLayout { get; set; }
Property IncludeInLayout As Boolean
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.ChartTitle.Text = "Sales Analysis";
chart.ChartTitle.IncludeInLayout = false;
bool includeInLayout = chart.ChartTitle.IncludeInLayout;