Skip to main content

KpiDashboardItem<TKpiElement>.ContentArrangementMode Property

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

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

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.

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