我正在尝试使用以下代码为Google Cline图表创建自定义tooptip:
function(files, date, serverName) {
var htmlTooltip = '<div class ="custom-tooltip"> <label class = "tooltip-label"> Files: </label><label>' + files + '</label > <br> <label class = "tooltip-label">Date:</label><label>' + date + '</label > <br> <label class="tooltip-label" >Server:</label><label id="path">' + serverName + '</label> </div>';
return htmlTooltip;
}
我无法使用方向创建工具提示尾部箭头,因为谷歌图表正在向选定点显示工具提示箭头。
请告诉我如何实现这一点。