当在带有技术指标的HighStock图表中选择“全部”范围时,
股票价格(AAPL股票价格)未在工具提示中列出(大多数情况下,有时会出现)。


在此处打开示例图表:http://jsfiddle.net/laff/SRfW6/
将鼠标悬停在图表上,然后注意工具提示中列出了股价。
单击“全部”范围选择。
将鼠标悬停在图表上,请注意在大多数情况下,工具提示中不再列出股价。


有谁知道可能是什么问题?

此代码来自示例:

$.getJSON('http://www.highcharts.com/samples/data/jsonp.php?filename=aapl-c.json&callback=?', function(data) {
    $(function() {
        $('#container').highcharts('StockChart', {

            title : {
                text : 'MACD of AAPL stock price'
            },

            subtitle: {
                text: 'From may 15, 2006 to May 10, 2013'
            },

            yAxis: [{
                title: {
                    text: 'Price'
                },
                height: 200,
                plotLines: [{
                    value: 0,
                    width: 1,
                    color: '#808080'
                }]
            }, {
                title: {
                    text: 'MACD'
                },
                top: 300,
                height: 100,
                offset: 0,
                lineWidth: 2
            }],

            tooltip: {
                crosshairs: true,
                shared: true
            },

            rangeSelector : {
                selected : 1
            },

            legend: {
                enabled: true,
                layout: 'vertical',
                align: 'right',
                verticalAlign: 'middle',
                borderWidth: 0
            },

            plotOptions: {
                series: {
                    marker: {
                        enabled: false,
                    }
                }
            },

            series : [{
                name: 'AAPL Stock Price',
                type : 'line',
                id: 'primary',
                data : data
            }, {
                name : 'MACD',
                linkedTo: 'primary',
                yAxis: 1,
                showInLegend: true,
                type: 'trendline',
                algorithm: 'MACD'

            }, {
                name : 'Signal line',
                linkedTo: 'primary',
                yAxis: 1,
                showInLegend: true,
                type: 'trendline',
                algorithm: 'signalLine'

            }, {
                name: 'Histogram',
                linkedTo: 'primary',
                yAxis: 1,
                showInLegend: true,
                type: 'histogram'

            }]
        });
    });
});

最佳答案

仅将以下代码添加到plotOptions.series似乎可以解决(JSFiddle demonstration):

dataGrouping: { }


看来您的原始代码dataGroupingnull

老实说我不知道为什么看起来边缘越野车。

关于highcharts - Highcharts股票图表-技术指标-选择“全部”范围时工具提示中缺少股票价格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25431250/

10-11 14:47