IChartArea.Padding

Syntax

Padding: IGxRectF;

Description

The Padding property determines custom values of paddings from the chart edges.

Comments

To use the property, set the AutoPadding property to False. This property is saved with the chart. If an object from the previous version is loaded, the AutoPadding and Padding properties are set by default.

Example

To execute the example, create a form with a button named Button1 on the form, the ChartBox component and the UiChart component.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    c: IChart;
Begin
    c:= UiChart1.Chart;
    c.ChartArea.Padding:= New GxRectF.Create(0000);
    c.ChartArea.AutoPadding:= False;
End Sub Button1OnClick;

Clicking the Button1 button sets the zero padding from the chart edges.

See also:

IChartArea