This question is locked. New answers and comments are not allowed.
Hello Support,
i need to modify the touch delay of the tooltips, so they show "onTouch" and dispose after it.
Currently you need touch the datapoint for a second, before the tooltip comes up.
I tried to set the "ShowDelay" to 0 but the touch behavior was the same.
This is my Behavior Code in the Chart:
<telerikChart:RadCartesianChart.Behaviors>
<telerik:ChartTooltipBehavior SnapToClosestPoint="True">
<telerik:ChartTooltipBehavior.ContentTemplate>
<DataTemplate>
<Border BorderBrush="#80D6F4" BorderThickness="1" CornerRadius="12" Background="White">
<StackPanel Background="Transparent">
<TextBlock Text="{Binding DataPoint.Value}" Foreground="#076FA0" Margin="2"/>
</StackPanel>
</Border>
</DataTemplate>
</telerik:ChartTooltipBehavior.ContentTemplate>
</telerik:ChartTooltipBehavior>
</telerikChart:RadCartesianChart.Behaviors>
Thanks!