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

PieValueType Enum

Lists values that identify types of PieDashboardItem values and combinations of these values.

Namespace: DevExpress.DashboardCommon

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

Declaration

[Flags]
public enum PieValueType

Members

Name Description
None

No value.

Argument

The argument value.

Example: Europe

Percent

The percentage share of the corresponding summary value relative to the total.

Example: 18.90 %

Value

The actual summary value.

Example: $18M

ValueAndPercent

The actual summary value and its percentage of the total.

Example: $18M (18.90 %)

ArgumentAndPercent

The argument value and its percentage in the total.

Example: Europe : 18.90 %

ArgumentAndValue

The argument value and the corresponding summary value.

Example: Europe : $18M

ArgumentValueAndPercent

The argument value, the corresponding summary value and its percentage in the total.

Example: Europe : $18M (18.90 %)

Related API Members

The following properties accept/return PieValueType values:

Remarks

Values listed by this enumeration are used to set the PieDashboardItem.LabelContentType and PieDashboardItem.TooltipContentType properties.

See Also