从Highstock / Highcharts得到奇怪的错误信息



我目前正在使用Hilitock/Highcharts,我不想通过json文件加载数据,我有。当我试图获取数据时,它会在控制台中给我这个我以前没有见过的错误信息:

highstock.js:456 Uncaught TypeError: f.data.slice is not a function

我试图通过这个函数获得json数据。当我输入我的data.json:

的url时,我才得到这个错误消息
$.each(names, function (i, name) {
        var dataUrl = 'http://local.priceservice.dev/js/data.json';
        $.getJSON(dataUrl,    function (data) {
            seriesOptions[i] = {
                name: name,
                data: data
            };
            // As we're loading the data asynchronously, we don't know what order it will arrive. So
            // we keep a counter and create the chart when all the data is loaded.
            seriesCounter += 1;
            if (seriesCounter === names.length) {
                createChart();
            }
            console.log(data)
        });
    });

我以前从未见过这个消息,我试着四处搜索,但我找不到和我有同样问题的人。

Json:

{
    "priceSeries": {
        "2016-10-19T12:51:51.000Z": [[1451606400000, 18.0], [1454284800000, 19.0], [1456790400000, 17.0], [1456790400000, 15.0], [1459468800000, 15.0], [1462060800000, 15.0], [1464739200000, 15.0], [1467331200000, 15.0], [1470009600000, 15.0], [1472688000000, 15.0], [1475280000000, 15.0], [1477958400000, 15.0], [1480550400000, 15.0], [1483228800000, 15.0], [1485907200000, 15.0], [1488326400000, 15.0]],
        "2016-11-19T12:51:51.000Z": [[1451606400000, 19.0], [1454284800000, 20.0], [1456790400000, 18.0], [1456790400000, 16.0], [1459468800000, 16.0], [1462060800000, 16.0], [1464739200000, 16.0], [1467331200000, 16.0], [1470009600000, 16.0], [1472688000000, 16.0], [1475280000000, 16.0], [1477958400000, 16.0], [1480550400000, 16.0], [1483228800000, 16.0], [1485907200000, 16.0], [1488326400000, 16.0]]
    }
}
Hilitock/Highcharts代码:
$(function () {
    var seriesOptions = [],
        seriesCounter = 0,
        names = ['MSFT', 'AAPL', 'GOOG'];
    /**
     * Create the chart when all data is loaded
     * @returns {undefined}
     */
    function createChart() {
        $('#container').highcharts('StockChart', {
            chart: {
                zoomType: 'x'
            },
            legend: {
                enabled: true
            },
            rangeSelector: {
                buttons: [{
                    type: 'hour',
                    count: 1,
                    text: '1h'
            }, {
                    type: 'day',
                    count: 1,
                    text: '1d'
            }, {
                    type: 'week',
                    count: 1,
                    text: '1w'
            }, {
                    type: 'month',
                    count: 1,
                    text: '1m'
            }, {
                    type: 'year',
                    count: 1,
                    text: '1y'
            }, {
                    type: 'all',
                    text: 'All'
            }],
                inputEnabled: false, // it supports only days
                selected: 4 // all
            },
            yAxis: {
                labels: {
                    formatter: function () {
                        return (this.value > 0 ? ' + ' : '') + this.value + '%';
                    }
                },
                plotLines: [{
                    value: 0,
                    width: 2,
                    color: 'silver'
                }]
            },
            plotOptions: {
                series: {
                    compare: 'percent',
                    showInNavigator: true
                }
            },
            tooltip: {
                pointFormat: '<span style="color:{series.color}">{series.name}</span>: <b>{point.y}</b> ({point.change}%)<br/>',
                valueDecimals: 2,
                split: true
            },
            series: seriesOptions
        });
    }
    $.each(names, function (i, name) {
        var dataUrl = 'http://local.priceservice.dev/js/data.json';
        $.getJSON(dataUrl,    function (data) {
            seriesOptions[i] = {
                name: name,
                data: data
            };
            // As we're loading the data asynchronously, we don't know what order it will arrive. So
            // we keep a counter and create the chart when all the data is loaded.
            seriesCounter += 1;
            if (seriesCounter === names.length) {
                createChart();
            }
            console.log(data)
        });
    });
});

提前感谢!:)

series中的数据必须是数组。该系列至少需要一个对象,其数据格式如下:

series: [{
   data: [...] // <- has to be an array
}]

你的系列看起来像这样:

series: [{
   name: ...,
   data: { // <- you put an object instead of an array with points
      "priceSeries": ...
   }
}]

上面的代码导致slice调用对象,就像这样

var someObj = {};
someObj.slice(); // Uncaught TypeError: someObj.slice is not a function(…)

你应该这样做:http://jsfiddle.net/r3xfxymm/1/

相关内容

最新更新