Padding: IGxRectF;
The Padding property determines custom values of paddings from the chart edges.
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.
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(0, 0, 0, 0);
c.ChartArea.AutoPadding:= False;
End Sub Button1OnClick;
Clicking the Button1 button sets the zero padding from the chart edges.
See also: