Articles in this section
Category / Section

How can I keep the axis interval constant while zooming UWP Chart?

2 mins read

This article explains how to maintain a specific interval on the axis while zooming in a UWP chart.

To maintain a specific interval on the axis while zooming a UWP chart, you can use the EnableAutoIntervalOnZooming property of the chart axis and set it to false.

Additionally, you can add the ChartZoomPanBehavior to the charts’ behavior collection and set the desired interval (in this case, 5) on the axis. This will ensure that the axis interval remains consistent during zoom operations.

The following code sample demonstrates this implementation.

[Xaml]

<chart:SfChart>
 
    <chart:SfChart.Behaviors>
        <chart:ChartZoomPanBehavior />
    </chart:SfChart.Behaviors>
            
    <chart:SfChart.PrimaryAxis>
        <chart:NumericalAxis Interval="5" EnableAutoIntervalOnZooming="False"/>
    </chart:SfChart.PrimaryAxis>
 
    <chart:SfChart.SecondaryAxis>
        <chart:NumericalAxis />
    </chart:SfChart.SecondaryAxis>
 
    <chart:ColumnSeries ItemsSource="{Binding Data}"
                        XBindingPath="XValue"
                        YBindingPath="YValue"/>
</chart:SfChart>

 

By setting this code sample, the chart will maintain the interval of 5 even when zooming.

Download the complete sample in GitHub

Output:

Before zooming, the x-axis interval is 5, and the y-axis interval is 20.

Chart before zooming.

After zooming, the x-axis maintains the same interval, but the y-axis interval has changed.Maintain axis interval while zooming.

See Also

How to reset zooming in WPF Chart (SfChart)?

How to zoom a chart programmatically?

How to set zoom and pan position for WPF Chart (SfChart)?

 

Conclusion

I hope you enjoyed learning about how I can keep the axis interval constant while zooming UWP Chart (SfChart).

You can refer to our UWP Charts feature tour page to know about its other groundbreaking feature representations. You can also explore our UWP Charts examples to understand how to present and manipulate data. 

For current customers, you can check out our WPF controls from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our UWP Charts and other UWP controls.

If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!


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