Skip to main content
A newer version of this page is available. .

KpiDashboardItem<TKpiElement>.ContentArrangementMode Property

Gets or sets how elements displayed within the dashboard item should be arranged.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v18.2.Core.dll

Declaration

[DefaultValue(ContentArrangementMode.Auto)]
public ContentArrangementMode ContentArrangementMode { get; set; }

Property Value

Type Default Description
ContentArrangementMode **Auto**

A ContentArrangementMode enumeration member that specifies how elements displayed within the dashboard item should be arranged.

Available values:

Name Description
Auto

Dashboard item elements are arranged automatically.

FixedRowCount

Dashboard item elements are arranged in rows whose number is specified by the ContentLineCount property.

FixedColumnCount

Dashboard item elements are arranged in columns whose number is specified by the ContentLineCount property.

Remarks

Gauges, Cards and other dashboard items that contain multiple data visualization elements inside can arrange them in different ways. Use the ContentArrangementMode property to specify how these elements should be arranged.

If the ContentArrangementMode property is set to arrange elements in a specified number of rows or columns (the ContentArrangementMode.FixedColumnCount or ContentArrangementMode.FixedRowCount values), use the KpiDashboardItem`1.ContentLineCount property to specify the desired number of columns or rows.

To enable automatic arrangement of dashboard item elements, set the ContentArrangementMode property to ContentArrangementMode.Auto.

See Also