If invoked prevents the data bind action and dataBound event will not fire.
<divid="gantt"></div><script>$("#gantt").kendoGantt({dataSource:[{id:1,orderId:0,parentId:null,title:"Task1",start:newDate("2014/6/17 9:00"),end:newDate("2014/6/17 11:00")}],dataBinding:function(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("dataBinding");}});</script>
<divid="gantt"></div><script>functiongantt_dataBinding(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("dataBinding");}$("#gantt").kendoGantt({dataSource:[{id:1,orderId:0,parentId:null,title:"Task1",start:newDate("2014/6/17 9:00"),end:newDate("2014/6/17 11:00")}]});var gantt =$("#gantt").data("kendoGantt");
gantt.bind("dataBinding", gantt_dataBinding);</script>