PieDashboardItem.TooltipContentType Property
Gets or sets which values are displayed within tooltips.
Namespace: DevExpress.DashboardCommon
Assembly:
DevExpress.Dashboard.v24.1.Core.dll
NuGet Package:
DevExpress.Dashboard.Core
Declaration
[DefaultValue(PieValueType.ArgumentValueAndPercent)]
public PieValueType TooltipContentType { get; set; }
<DefaultValue(PieValueType.ArgumentValueAndPercent)>
Public Property TooltipContentType As PieValueType
Property Value
Type |
Default |
Description |
PieValueType |
ArgumentValueAndPercent |
A PieValueType enumeration member that specifies which values are displayed within tooltips.
|
Available values:
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 %)
|
See Also