x
for the horizontal coordinates, and y
for the vertical.
The two DragAxis instances are available in each Drag event parameter.new kendo.Drag($("#foo"), {
start: function(e) {
console.log(x); // Horizontal axis
console.log(y); // Vertical axis
}
});