[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChart.ChartArea

ChartArea Property

ChartArea

Gets the IChartArea object that represents the complete chart area of the chart.

The chart area contains the chart elements outside the plotted data region, such as the chart title and legend. The plot area is the region where the chart's data is drawn; see PlotArea.

Declaration
IChartArea ChartArea { get; }
ReadOnly Property ChartArea As IChartArea
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
IChartArea chartArea = chart.ChartArea;
chartArea.Format.Fill.Color.RGB = Color.Red;