This question is locked. New answers and comments are not allowed.
Hi,
I am binding data to tooltip.
In the Telerik sample code,
I am binding data to tooltip.
In the Telerik sample code,
<DataTemplate x:Key="TooltipTemplate">
<Border BorderThickness="2" Margin="8,4,8,2" Background="White" BorderBrush="Black">
<TextBlock Text="{Binding DataPoint.Value}" Margin="4,4,4,3" FontSize="14.667" Foreground="Black"/>
</Border>
</DataTemplate>
I need to bind some other value other than the chart's value.
How to bind the data in that case?