BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Alex,
Thanks for using Syncfusion products.
We have analyzed your query and we would like to inform you that the corresponding series segment will be binding parameter for the tooltip. From that Segment, we can retrieve the required data. Based on your requirement we have modified tooltip template and highlighted changes need to be done in the binding. Please find the modified template below.
[XAML]
<DataTemplate x:Key="ChartTooltipSeriesTemplate">
<Border BorderBrush="Black" BorderThickness="2" Padding="10" >
<StackPanel Orientation="Vertical">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Series : " />
<TextBlock Text="{Binding Series.Label}" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Text="Category : " />
<TextBlock Text="{Binding Item.[XBindingPath]}" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Text="Value : " />
<TextBlock Text="{Binding YData}" />
</StackPanel>
</StackPanel>
</Border>
</DataTemplate>
Note:
[XBindingPath] – Fill it with the corresponding series XBindingPath.
Please let us know if you have any queries.
Thanks
Satheesh Kumar T