真实报价流的Highchart动态数据

时间:2015-07-23 10:30:34

标签: highcharts

我想做这样的高保真: http://www.highcharts.com/stock/demo/dynamic-update

数据将实时接收。

我第一次提取数据(报价和时间戳)。 在此之后,数据将被推送。

我的代码:

//drow chart - pull
var highChart = function () {
    Highcharts.setOptions({
        global : {
            useUTC : false
        }
    });

    $('#container').highcharts('StockChart', {
        rangeSelector: {
            buttons: [{
                count: 1,
                type: 'minute',
                text: '1M'
            }, {
                count: 5,
                type: 'minute',
                text: '5M'
            }, {
                type: 'all',
                text: 'All'
            }],

            inputEnabled: false,
            selected: 0
            },
            title : {
                text : 'Intraday chart'
            },
            exporting: {
                enabled: false
            },
            series : [{
                name : 'DAX DATA',
                data : 
            }]
       });
    }          

    var setHighChart = function(lastPriceTimestamp,lastPrice) {
        highChart.series[0].setData([lastPriceTimestamp,lastPrice]);
     };

...

//push data    
setHighChart(lastPriceTimestamp,lastPrice);

Maby,你可以帮助我

THX

0 个答案:

没有答案