GraphArea: IChartGraphArea;
The GraphArea property enables a user to specify parameters of plot area for a chart.
Use the IChartGraphArea interface to work with available parameters.
This example assumes that there is the Chart object of the IChart type.
Sub Area;
Var
Chart : IChart;
Begin
Chart.GraphArea.BackgroundInfo.Type := ChartBackgroundType.Color;
Chart.GraphArea.BackgroundInfo.Color := New GxColor.CreateARGB(255,255,0,0);
End Sub Area;
After executing the example the plot area of the chart is filled with solid red color.
See also: