mobilecontrols-devexpress-dot-xamarinforms-dot-charts-609bc02f.md
Defines the tooltip behavior.
Namespace : DevExpress.XamarinForms.Charts
Assembly : DevExpress.XamarinForms.Charts.dll
NuGet Package : DevExpress.XamarinForms.Charts
public class TooltipHintBehavior :
HintBehavior
This example demonstrates how to set the ChartView hint behavior to tooltip, and how to specify the tooltip hint properties.
TooltipHintBehavior object to the Hint.Behavior property. Specify whether you want point tooltips and series tooltips displayed on the chart. At one moment, only one tooltip can be displayed.<dxc:ChartView>
<!--...-->
<dxc:ChartView.Hint>
<dxc:Hint Enabled="True">
<dxc:Hint.Behavior>
<dxc:TooltipHintBehavior ShowPointTooltip="True" ShowSeriesTooltip="True"/>
</dxc:Hint.Behavior>
</dxc:Hint>
</dxc:ChartView.Hint>
</dxc:ChartView>
Object ChartElement HintBehavior TooltipHintBehavior
See Also