maui-devexpress-dot-maui-dot-charts-dot-hintbase.md
Gets or sets whether the chart displays hints when a user taps chart, and when a hint is requested in code. This is a bindable property.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public bool Enabled { get; set; }
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if the chart displays a hint; otherwise, false.
|
This example shows how to enable hints for a pie chart.
Enabled property to True.<dxc:PieChartView>
<!--...-->
<dxc:PieChartView.Hint>
<dxc:PieHint Enabled="True" ShowMode="OnTap" />
</dxc:PieChartView.Hint>
</dxc:PieChartView>
See Also