drag

Fired as long as the user is dragging the chart using the mouse or swipe gestures.

The event handler function context (available via the this keyword) will be set to the widget instance.

Event Data

e.axisRanges Object

A hastable containing the initial range (min and max values) of named axes. The axis name is used as a key.

e.originalEvent Object

The original user event that triggered the drag action.

e.sender kendo.dataviz.ui.Chart

The widget instance which fired the event.

Example - subscribe to the "drag" event during initialization

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    { data: [1, 2] }
  ],
  drag: function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log("drag");
  }
});
</script>

Example - subscribe to the "drag" event after initialization

<div id="chart"></div>
<script>
function chart_drag(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
  console.log("drag");
}
$("#chart").kendoChart({
  series: [
    { data: [1, 2] }
  ]
});
var chart = $("#chart").data("kendoChart");
chart.bind("drag", chart_drag);
</script>
In this article