IChart.GraphArea

Syntax

GraphArea: IChartGraphArea;

Description

The GraphArea property enables a user to specify parameters of plot area for a chart.

Comments

Use the IChartGraphArea interface to work with available parameters.

Example

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:

IChart