Hi,
I am working with the SfCartesianChart, and when I try to show the trackball on Android, it disappears when the user drags their finger and the main scroll movement is detected.
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:chart="clr-namespace:Syncfusion.Maui.Charts;assembly=Syncfusion.Maui.Charts"
xmlns:local="clr-namespace:CallCommandWhenTrackballHide"
x:Class="CallCommandWhenTrackballHide.MainPage">
<ContentPage.BindingContext>
<local:ViewModel/>
</ContentPage.BindingContext>
<Grid RowDefinitions="*,9*">
<Button Clicked="Button_Clicked" Grid.Row="0" Text="EnableScroll"/>
<ScrollView x:Name="scrollview" Orientation="Both" Grid.Row="1" IsEnabled="True">
<VerticalStackLayout>
<Slider Value="5" Minimum="0" Maximum="10" ValueChanged="Slider_ValueChanged"/>
<chart:SfCartesianChart HeightRequest="900">
<chart:SfCartesianChart.XAxes>
<chart:NumericalAxis/>
</chart:SfCartesianChart.XAxes>
<chart:SfCartesianChart.YAxes>
<chart:NumericalAxis/>
</chart:SfCartesianChart.YAxes>
<chart:SfCartesianChart.TrackballBehavior>
<local:CustomTrackballBehavior/>
</chart:SfCartesianChart.TrackballBehavior>
<chart:LineSeries ItemsSource="{Binding Data}" XBindingPath="XValue" YBindingPath="YValue"/>
</chart:SfCartesianChart>
</VerticalStackLayout>
</ScrollView>
</Grid>
</ContentPage>
could you help us pls