Articles in this section
Category / Section

How to add multiple trackballs in Xamarin.Forms Chart?

1 min read

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:

Xamarin.Forms multiple trackball behavior

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments
Please sign in to leave a comment
Access denied
Access denied