maui-devexpress-dot-maui-dot-charts-fab329c3.md
The base class for ChartView and PieChartView hints.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public abstract class HintBase :
StyledElement
The HintBase class provides properties that enable hints in a chart (Enabled) and specify a gesture on which the chart shows the hint (ShowMode).
You can also manage hint behavior via code. Use the ShowHint and HideHint methods to display or hide hints in the chart.
Any time a hint is shown or hidden, the HintShown or HintHidden event occurs.
This example shows how to enable hints for a pie chart.
<dxc:PieChartView>
<!--...-->
<dxc:PieChartView.Hint>
<dxc:PieHint Enabled="True" ShowMode="OnTap" />
</dxc:PieChartView.Hint>
</dxc:PieChartView>
System.Object BindableObject Element ChartElementBase ChartElement StyledElement HintBase Hint
See Also