Highcharts股票图表 - 技术指标 - 选择' All'工具提示时缺少股票价格。范围

时间:2014-08-21 16:23:28

标签: highcharts

在具有技术指标的HighStock图表中选择" All" -range时,然后选择 股票价格(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'

            }]
        });
    });
});

1 个答案:

答案 0 :(得分:0)

只需将此代码添加到plotOptions.series似乎就可以解决问题(JSFiddle demonstration):

dataGrouping: { }

看来,原始代码dataGrouping在某种程度上null

我会说实话。我不知道为什么。看起来边缘马车。