Javascript highstocks highchart的工具提示不显示?

Javascript highstocks highchart的工具提示不显示?,javascript,jquery,highcharts,Javascript,Jquery,Highcharts,我试图解决这个问题已经有一段时间了,但没有成功。我正在尝试绘制一张高库存图表 用于图形呈现的javascript:- chartwa= new Highcharts.StockChart({ chart: chart, title: title, xAxis: xAxis, series: series,

我试图解决这个问题已经有一段时间了,但没有成功。我正在尝试绘制一张高库存图表

用于图形呈现的javascript:-

 chartwa= new Highcharts.StockChart({
                        chart: chart,
                        title: title,
                        xAxis: xAxis,
                        series: series,
                        legend : legend,
                        plotOptions : plotoptions,
                        tooltip : {shared: true},
                        datagrouping : {enabled : true}
                    });
我传递给javascript的示例数据:-

    series : [{'type': 'line', 'data': [[1425445067000, -165.0], [1425445077000, 42.0], [1425445087000, 152.0], [1425445098000, 26.0], [1425445108000, -117.0]], 'tooltip': {'valueDecimals': 2}}]
    title : {'text': 'No Title'}
    xAxis :
    chart : {'zoomType': 'x', 'renderTo': 'graph_103'}
    legend : {'labelFormat': '<span style="color:{color}">{name}</span> - <b> x : ({point.x:.2f}) , </b> y : ({point.y:.2f}) <br/>', 'layout': 'vertical', 'enabled': 'true', 'maxHeight': '100'}
    plotoptions : {'area': {'marker': {'lineWidth': 1, 'lineColor': '#666666'}, 'lineWidth': 1, 'percent': 'normal', 'lineColor': '#666666'}}
tooltip : {shared: true}
datagrouping : {enabled : true}
系列:[{'type':'line','data':[[1425445067000,-165.0],[1425445077000,42.0],[1425445087000,152.0],[1425445098000,26.0],[1425445108000,-117.0],'tooltip':{'valueDecimals':2}]
标题:{'text':'No title'}
xAxis:
图表:{'zoomType':'x','renderTo':'graph_103'}
图例:{'labelFormat':'{name}-x:({point.x:.2f}),y:({point.y:.2f})
,'layout':'vertical','enabled':'true','maxHeight':'100'} 绘图选项:{'area':{'marker':{'lineWidth':1,'lineColor':'#666666'},'lineWidth':1,'percent':'normal','lineColor':'#666666'} 工具提示:{shared:true} 数据分组:{enabled:true}
我不知道为什么工具提示没有显示出来

我正在从加载js

<script src="http://code.highcharts.com/stock/highstock.js"></script>
<script src="http://code.highcharts.com/stock/highstock.src.js"></script>
<script src="http://code.highcharts.com/stock/modules/exporting.js"></script>
<script src="https://rawgithub.com/highslide-software/value-in-legend/master/value-in-legend.js"></script>
<script src="https://rawgithub.com/RolandBanguiran/highstock-zoom-out-selection/master/zoomout-selection.js"></script>


我在调试器控制台中没有看到任何错误。

发现了问题,这是由于在插件github页面上报告错误并将其发布在此处可能是个好主意,以供将来参考:)肯定会这样做。