参考链接:
gantt.plugins({
tooltip: true
});
var mouse_on_grid = false;
gantt.templates.tooltip_text = function(start,end,task){
if(mouse_on_grid) return "<b>Task:</b> "+task.text+"<br/><b>Start date:</b> " +
gantt.templates.tooltip_date_format(start)+
"<br/><b>End date:</b> "+gantt.templates.tooltip_date_format(end);
return ""
};
gantt.attachEvent("onMouseMove", function (id, e){
if (e.clientX <= gantt.config.grid_width) mouse_on_grid = true;
else mouse_on_grid = false;
});
gantt.init("gantt_here");
gantt.parse(<data>);