2X faster development
The ultimate Xamarin UI toolkit to boost your development speed.
SfChart allows you add multiple trackballs to a single chart and drag them independently to view the information of different data points at the same time. The following steps describe how to add multiple trackballs to SfChart and you can download the complete sample here: Step 1: Create a custom ChartTrackballBehaviorExt class, which is inherited from ChartTrackballBehavior. C#: public class ChartTrackballBehaviorExt : ChartTrackballBehavior { } Step 2: Create an instance of ChartTrackballBehaviorExt, and add it to the ChartBehaviors collection. XAML: <chart:SfChart.ChartBehaviors> <local:ChartTrackballBehaviorExt /> <local:ChartTrackballBehaviorExt /> </chart:SfChart.ChartBehaviors> Step 3: Activate the multiple trackballs at load time using the Show method. C#: protected override void OnAppearing() { base.OnAppearing(); Task.Run(async () => { await ShowTrackball(); }); } async Task ShowTrackball() { Task.Delay(1000).Wait(); Device.BeginInvokeOnMainThread(() => { trackballBehavior1.Show(pointX, pointY); trackballBehavior2.Show(pointX, pointY); }); } Step 4: Set ActivationMode to None to restrict the default movement of the trackball behavior. XAML: <chart:SfChart.ChartBehaviors> <local:ChartTrackballBehaviorExt ActivationMode="None" x:Name="trackballBehavior1" /> <local:ChartTrackballBehaviorExt ActivationMode="None" x:Name="trackballBehavior2" /> </chart:SfChart.ChartBehaviors> Step 5: Interact with multiple trackballs by overriding the touch methods of ChartTrackballBehavior class and the HitTest method. The HitTest method is used to find the trackball that is currently activated by user. C#: public class ChartTrackballBehaviorExt : ChartTrackballBehavior { bool isActivated = false; protected override void OnTouchDown(float pointX, float pointY) { if (HitTest(pointX, pointY)) { isActivated = true; base.OnTouchDown(pointX, pointY); } } protected override void OnTouchMove(float pointX, float pointY) { if (isActivated) { Show(pointX, pointY); base.OnTouchMove(pointX, pointY); } } protected override void OnTouchUp(float pointX, float pointY) { isActivated = false; } } Step 6: Tap and drag each trackball separately to view the data points at different positions simultaneously. Output: |
2X faster development
The ultimate Xamarin UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.
Can you please provide the full sample code for this? i can´t get it working :/
Thanks Thomas
Hi Thomas,
Greetings from Syncfusion.
We have attached the complete sample from the following location. Please find it.
https://www.syncfusion.com/downloads/support/directtrac/general/ze/SfChartMultipleTrackball1907471288.zip
Thanks, Muneesh Kumar G.