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

LayoutSizeValueType Enum

Lists types of measurement units in which the diagram layout measures its items’ sizes.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v19.2.dll

Declaration

public enum LayoutSizeValueType

Members

Name Description
Weight

The layout measures size as weight.

Absolute

The layout measures a size in pixels.

Related API Members

The following properties accept/return LayoutSizeValueType values:

Remarks

Remarks

The diagram measures item size as follows when the size type is Weight:

  1. The diagram calculates size available for weighted items by subtracting absolute sizes from the size available for all items.
  2. Summarizes a total weight and computes the weight unit’s absolute size by dividing size for weighted items on the total weight.
  3. The item’s size is the weight unit’s absolute size multiplied by the item weight.
See Also