Skip to main content

PieDashboardItem.ContentArrangementMode Property

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

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v24.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 pies displayed within the pie dashboard item should be arranged.

Available values:

Name Description
Auto

Dashboard item elements are automatically arranged.

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

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

To enable automatic arrangement of pies, set the ContentArrangementMode property to ContentArrangementMode.Auto.

See Also