我在 HighCharts 的散点图中得到了一个具有完全相同值的数据池,如下所示:http: //jsfiddle.net/DvbHa/1/
我希望能够在工具提示中显示它们,以便能够单独单击它们
有可能吗?谢谢大家
代码:
$(function () {
$('#container').highcharts({
chart: {
type: 'scatter',
zoomType: 'xy'
},
title: {
text: ''
},
tooltip: {
headerFormat: '<b>{series.name}</b><br>',
pointFormat: '{point.x}, {point.y}'
},
series: [{
data: [[10, 5],
[15, 6],
[10, 5],
[15, 7],
[13, 6],
[13, 6]]
}],
});
});