[]
Gets the chart format of the chart title.
IChartFormat Format { get; }
ReadOnly Property Format As IChartFormat
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.ChartTitle.Text = "Sales Analysis";
IChartTitle title = chart.ChartTitle;
IChartFormat format = title.Format;
format.Fill.Color.RGB = Color.Blue;