如何在甜甜圈 Highchart 中添加 URL 支持?我试过了,但我在 URL 中得到了未定义的错误。您的帮助将不胜感激。
这是我在系列中添加的
point: {
events: {
click: function(e) {
location.href = e.point.url;
e.preventDefault();
}
}
}
data = [{
y: 55.11,
color: colors[0],
url: 'www.google.com',
drilldown: {
name: 'MSIE versions',
categories: ['MSIE 6.0', 'MSIE 7.0', 'MSIE 8.0', 'MSIE 9.0'],
data: [10.85, 7.35, 33.06, 2.81],
url: 'www.google.com',
color: colors[0]
}
}, { .......many more dataset ...
更新: