Highstock / Highchart OHCL没有显示?

时间:2014-03-24 09:28:34

标签: java php jquery html highstock

嘿伙计们,我无法将数据加载到高档图表中。

我厌倦了显示高品质的图表

my data.json

[{
    "date":1395651841,
    "price":11,
    "amount":12,
    "tid":33170585,
    "price_currency":"USD",
    "item":"none",
    "trade_type":"bid"
    },
    {
    "date":1395651836,
    "price":4,
    "amount":3,
    "tid":33170584,
    "price_currency":"USD",
    "item":"none",
    "trade_type":"ask"}
]

我的Html

    <script type="text/javascript">
                    $(function() {
    $.getJSON('data.json', function(data) {

        // Create the chart
        $('#container').highcharts('StockChart', {


            rangeSelector : {
                inputEnabled: $('#container').width() > 480,
                selected : 1
            },

            title : {
                text : 'Tiredddd'
            },

            series : [{
                name : '@_@',
                data : data,
                type : 'areaspline',
                threshold : null,
                tooltip : {
                    valueDecimals : 2
                },
                fillColor : {
                    linearGradient : {
                        x1: 0, 
                        y1: 0, 
                        x2: 0, 
                        y2: 1
                    },
                    stops : [[0, Highcharts.getOptions().colors[0]], [1, 'rgba(0,0,0,0)']]
                }
            }]
        });
    });
});

        </script>

请协助我找到错误

2 个答案:

答案 0 :(得分:0)

确保你有逗号分隔的数据。请调试(警报(数据)),如(1,2,3)。

$.getJSON('data.json', function(data) {alert(data); // your other code......}

答案 1 :(得分:0)

我的数据点中没有open / high / low / close个属性。

请参阅Highcharts数据here所需的格式。