[]
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.
bool IncludeInLayout { get; set; }
Property IncludeInLayout As Boolean
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;