Skip to main content

ChartControlSettings.AutoLayout Property

Gets or sets a value, which specifies whether the adaptive layout feature is enabled for chart elements in the chart control.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public bool AutoLayout { get; set; }

Property Value

Type Description
Boolean

true, to apply the adaptive layout algorithm to the chart; otherwise, false.

Remarks

The adaptive layout feature is used to maintain a better chart appearance and layout when the chart becomes smaller.

To accomplish this task, the chart elements that have a Visibility property (e.g., a legend (LegendBase.Visibility), an axis (Axis2D.Visibility), an axis title (AxisTitle.Visibility), a chart title (DockableTitle.Visibility)) are hidden.

In addition, the label position inside bars can be changed for those labels for which the BarSeriesLabel.Position property is set to BarSeriesLabelPosition.Auto mode (the default value).

The following images demonstrate the AutoLayout property in action for SideBySideBarSeriesView.

AutoLayout =true AutoLayout = false (the default value)
AutoLayout_true AutoLayout_false

In the case of pie and donut charts, the Dimension property for SimpleDiagram and SimpleDiagram3D is calculated automatically during resizing. For instance, when you decrease chart size, all pies (donuts) are placed in one line horizontally (by row) or vertically (by column) in the diagram to occupy all the available free space.

See Also