bounceVelocityThreshold Number(default: 1.6)

The velocity threshold after which a swipe will result in a bounce effect.

Example - increase bounce velocity threshold

<div data-role="view" data-stretch="true">
  <div id="scrollView" data-role="scrollview" data-bounce-velocity-threshold="5">
    <div data-role="page"><div style="height: 200px;">Foo</div></div>
    <div data-role="page"><div style="height: 200px;">Bar</div></div>
  </div>
</div>

<script>
var app = new kendo.mobile.Application();
</script>
In this article