minXDelta Number (default: 30)

The minimum horizontal distance in pixels the user should swipe before the swipe event is triggered.

Example

<div id="touch">
    Swipe me
</div>

<script>
$("#touch").kendoTouch({
    enableSwipe: true,
    minXDelta: 50,
    swipe: function (e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
        console.log("Long swipe");
    }
});
</script>
In this article