Hi Codrina,
We have analyzed your query and we like to inform you that we were able to reproduce this issue only in UWP platform, when activating the tooltip during series animation along with tooltip label customized with data template. If you can confirm the above is your exact scenario, then we can provide you a fix for this accordingly.
If the above-mentioned scenario is different from yours, can you please send us an issue reproducing sample along with the replication procedure? so that we can investigate on this further and update you the solution at the earliest.
Thanks,
Michael
Hi and thank you for your replay. We are using a custom tooltip template on iOS - ipad.
<DataTemplate>
<Grid>
<Frame OutlineColor="White" Padding="2"
HasShadow="False"
Margin="0.1" CornerRadius="2">
<StackLayout>
<StackLayout BackgroundColor="#F5F5F5" >
<Label Text="{Binding KeyValue}"
TextColor="Transparent" VerticalTextAlignment="Center"
HorizontalTextAlignment="Center" Margin="2,0,2,0"></Label>
</StackLayout>
</StackLayout>
</Frame>
<StackLayout Orientation="Horizontal">
<Label TextColor="#00255C" Text="{Binding KeyValue}" VerticalTextAlignment="Center" HorizontalTextAlignment="Center"
HorizontalOptions="CenterAndExpand" FontSize="14" FontFamily="SourceSansPro-Regular" Margin="2,0,2,0"/>
</StackLayout>
</Grid>
</DataTemplate>
Thank you