Highstock突破140点

时间:2014-08-21 05:16:57

标签: highstock

我有一个有效的Highstock图表,打破了大约140点的数据系列。我知道Highstock可能会超过50,000点,所以我不确定我的情况会发生什么。

JSON很好。我一行一行地测试了它,看着图表在第140个条目周围突破。

$(function() {
$.getJSON('stock2.json', function(data) {
    $('#container1').highcharts('StockChart', {
        rangeSelector : {
            selected : 1,
            inputEnabled : $('#container').width() > 480
        },
        title : {
            text : 'Turnover and Spread Comparison with TSE for N225'
        },
        yAxis : [{
            title : {
                text :'Spread (BPS)'
            },
            opposite : false,
        },
        {
            title : {
                text :'Average Daily Turnover (Billion JPY)'
            },
        }],
        legend : {
            enabled : true,
            floating : true,
            align : 'left',
            shadow : true,
            layout : 'vertical',
            x : 100,
            y : -332,
            borderWidth : 2,
            borderColor : '#8BCAFF',
            backgroundColor : '#FFFFFF'
        },
        colors : ['#8BCAFF','#BC0000', '#030060', '#BC0000', '#030060' ], // Line colours
        series : [{
            name : 'Turnover',
            data : data.d1,
            pointStart: Date.UTC(2010, 10, 4),
            pointInterval: 3600 * 1000 * 24 * 7,
            type : 'column',
            yAxis : 1,
            tooltip : {
                valueDecimals : 2,
                valueSuffix : ' JPY'
            }
        }]
    });
});
});

0 个答案:

没有答案