dashboard-devexpress-dot-dashboardcommon-398b37a8.md
Lists values that identify types of PieDashboardItem values and combinations of these values.
Namespace : DevExpress.DashboardCommon
Assembly : DevExpress.Dashboard.v25.2.Core.dll
NuGet Package : DevExpress.Dashboard.Core
[Flags]
public enum PieValueType
<Flags>
Public Enum PieValueType
| 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 %)
|
The following properties accept/return PieValueType values:
Values listed by this enumeration are used to set the PieDashboardItem.LabelContentType and PieDashboardItem.TooltipContentType properties.
See Also