This question is locked. New answers and comments are not allowed.
How do you display the series label in the pie chat tool tip? When I chose DataPoint.Label I get the pie wedge percentage instead of the label. DataPoint.Value returns the pie wedge value as I would expect. Below is my example:
Thanks,
Al
<StackPanel Background="White">
<TextBlock Text="{Binding DataPoint.Label}" Margin="4,4,3,3" Foreground="#99441D"/>
<TextBlock Text="{Binding DataPoint.Value, Converter={StaticResource LabelConverter}}" Margin="4,4,3,3" Foreground="#506005"/>
</StackPanel>
Thanks,
Al