Having trouble getting help?
Contact Support
Contact Support
Tooltip in UWP Pivot Chart (SfPivotChart)
7 Jan 20251 minute to read
The SfPivotChart provides tooltip support by which the series information such as measure, x-axis values, y-axis values, and series name can be displayed over the chart area, when the mouse pointer is moved over chart points.
The following code snippet shows how to enable the series tooltip by using ShowToolTip
property.
<syncfusion:SfPivotChart x:Name="PivotChart1" ShowToolTip="True"
ItemSource="{Binding ProductSalesData}" PivotAxis="{Binding PivotAxis}"
PivotLegend="{Binding PivotLegend}" PivotCalculations="{Binding PivotCalculations}">
</syncfusion:SfPivotChart>
PivotChart1.ShowToolTip = true;
PivotChart1.ShowToolTip = True