Skip to main content

GridLayoutOptions.SetValues(Int32, Int32, Int32, Int32) Method

Sets values that define the pane position within the layout grid.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public void SetValues(
    int row,
    int column,
    int rowSpan = 1,
    int columnSpan = 1
)

Parameters

Name Type Description
row Int32

The integer index of the row the pane occupies. This value should be greater than or equal to 0.

column Int32

The integer index of the column the pane occupies. This value should be greater than or equal to 0.

Optional Parameters

Name Type Default Description
rowSpan Int32 1

The number of rows the pane can simultaneously occupy, starting with its initial row index. This value should be greater than or equal to 1. This is an optional parameter.

columnSpan Int32 1

The number of columns the pane can simultaneously occupy, starting with its initial column index. This value should be greater than or equal to 1. This is an optional parameter.

See Also