dhtmlx-gantt甘特图的tooltip_text浮窗(鼠标悬停在bar上的弹框)

220 阅读1分钟

官网链接:docs.dhtmlx.com/gantt/deskt…

gantt.plugins({         
    tooltip: true     
}); 

gantt.templates.tooltip_text = function(start,end,task){
    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);
};