BUG在Highchart的鼠标事件中的绘图类型:线/样条曲线

看起来在highcharts线图中鼠标事件跟踪存在一些错误,我不确定它是否是它的错误,我前几天在同一事件上还有一个post, 如何在Highcharts中纠正鼠标事件 ,其中一个高图支持的工程师,建议排序x轴,我做了同样的建议,但结果是我在实际中不能接受的

这里是Fiddle的链接,请查看

1)良好的模式yaxis排序鼠标事件不工作—> 好

 
$(function () { $('#container').highcharts({ title: { text: 'Y axes reversed' }, yAxis: { reversed: true }, series: [{ data:[ [ 25.290,1.000 ], [ 25.240,2.000 ], [ 25.210,3.000 ], [ 25.190,4.000 ], [ 25.180,5.000 ], [ 25.170,6.000 ], [ 25.160,7.000 ], [ 25.310,8.000 ], [ 25.210,9.000 ], [ 25.170,10.000 ], [ 25.160,11.000 ], [ 25.160,12.000 ], [ 25.150,13.000 ], ] }] }); });

2)错误模式xaxis排序鼠标事件正在工作—> 坏

   
$(function () { $('#container').highcharts({ title: { text: 'Y axes reversed' }, xAxis :{opposite: true, }, yAxis: { reversed: true }, series: [{ data:[ [ 25.150,13.000 ], [ 25.160,12.000 ], [ 25.160,11.000 ], [ 25.160,7.000 ], [ 25.170,6.000 ], [ 25.170,10.000 ], [ 25.180,5.000 ], [ 25.190,4.000 ], [ 25.210,9.000 ], [ 25.210,3.000 ], [ 25.240,2.000 ], [ 25.290,1.000 ], [ 25.310,8.000 ], ] }] }); });

请有人帮我解决问题,这是我到目前为止尝试过的我试试小提琴 ,在这里你可以看到相同的数据y轴散点图鼠标事件排序正在工作但不能用线图。

  
var chart = new Highcharts.Chart({ chart: { renderTo: 'container', defaultSeriesType: 'scatter' }, title :{ text:'overlap, scatter points on line for mouse events, trying to keep same color and legend so that mouse event might work, do not know how to do it' }, xAxis : { opposite : true }, yAxis : { reversed : true }, series: [{ name: '07-Jan-2006 07:30:00 AM' , data:[ [ 25.290,1.000 ], [ 25.240,2.000 ], [ 25.210,3.000 ], [ 25.190,4.000 ], [ 25.180,5.000 ], [ 25.170,6.000 ], [ 25.160,7.000 ], [ 25.310,8.000 ], [ 25.210,9.000 ], [ 25.170,10.000 ], [ 25.160,11.000 ], [ 25.160,12.000 ], [ 25.150,13.000 ], ] },{ name: '07-Jan-2006 07:30:00 AM' , type : 'line', marker: {enabled:false}, enableMouseTracking: false, data:[ [ 25.290,1.000 ], [ 25.240,2.000 ], [ 25.210,3.000 ], [ 25.190,4.000 ], [ 25.180,5.000 ], [ 25.170,6.000 ], [ 25.160,7.000 ], [ 25.310,8.000 ], [ 25.210,9.000 ], [ 25.170,10.000 ], [ 25.160,11.000 ], [ 25.160,12.000 ], [ 25.150,13.000 ], ] }] });