maui-devexpress-dot-maui-dot-charts-dot-tooltiphintbehavior-36672b3d.md
Gets or sets whether the series tooltip is shown. This is a bindable property.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public bool ShowSeriesTooltip { get; set; }
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if the series tooltip is shown; otherwise, false.
|
This example sets the ChartView hint behavior to a tooltip, and how to specify the tooltip hint properties.
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>
See Also