使用面积图表执行此操作没问题,但无法找到散射图表的方法。使用http://jsfiddle.net/uZXPR/1/作为起点,但它只有1个系列,没有特殊的格式。我在黑暗中尝试过无数刺,但到目前为止没有运气。我可以在这里提交所有失败的尝试,但我认为从http://jsfiddle.net/uZXPR/1/开始更快,只需添加所需的内容。
有迹象表明其他人在使用多个系列散点图工具提示时遇到问题,但当然每个案例的细节都不同。
以下是我使用区域图表进行操作的片段(gNs.format *函数只是本地自行开发的格式化例程):
tooltip: {
formatter: function() {
var s = '<b>' + gNs.formatDate(new Date(this.x), '%Y-%M-%d') + '</b>';
$.each(this.points, function(i, point) {
s +='<br/>' +
'<span style="color:' + point.series.color + '">' + point.series.name + '</span>' +
': ' +
gNs.formatSeconds2HMS(point.y); });
return s;
},
shared: true
},