HighChart:在yAxis上动态添加类别动态添加数据系列

时间:2014-12-19 14:04:54

标签: javascript highcharts

我遇到了一个有趣的问题,我无法使用类型为' datetime'的xAxis添加一个点。以及带动态类别的yAxis和动态添加的系列

    $(document).ready(function() {
        drawScatter();
        $('#addSeries').on('click', function() {
            //first check if value is already a series
            var currentDate = new Date();
            var id = document.getElementById('txtValue').value;
            getSeriesIndexByEventID(eventid, function(index) {
                //if it doesnt exist, add it to chart
                if (index == -1) {
                    categories.push(id + ' category');
                    console.log(categories);
                    chart.yAxis[0].setCategories(categories);
                    idSeries.push({name: id+ 'n', data: [categories.length-1, [{x: currentDate.getTime()}]]});
                    chart.addSeries(idSeries[idSeries.length-1]);
                    console.log(chart.series[categories.length-1]);
                }
            });
        });
    }):

这是一个jsfiddle http://jsfiddle.net/5L59r1qt/10/

我希望能够点击按钮并将文本添加到系列中。这样做但它不会做正确的时间!

1 个答案:

答案 0 :(得分:0)

addSeries中的数据数组不正确。它应该是x / y值的对象。

 idSeries.push({name: id+ 'n', data: [{x: currentDate.getTime(),y:categories.length-1}]});

http://jsfiddle.net/5L59r1qt/12/