我有一个可以直线下降的折线图。例如我有一点(1,100)然后是(1,0)点。但是,highcharts(https://www.highcharts.com/)仅显示其中一个点的信息。当我将鼠标悬停在每个点上时,是否可以让它显示两点的信息?
答案 0 :(得分:2)
线型系列的默认值为findNearestPoint: 'x'
https://api.highcharts.com/highcharts/plotOptions.line.findNearestPointBy。
如果您将其更改为findNearestPoint: 'xy'
,您将获得所需的行为。
Highcharts.chart('container', {
series: [{
findNearestPointBy:'xy',
data: [
[0, 29.9],
[1, 50],
[1, 71.5],
[3, 106.4]
]
}]
});