IChart.GraphArea

Syntax

GraphArea: IChartGraphArea;

Description

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

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 chart plot area is filled with solid red color.

See also:

IChart