将新数据加载到C3.js折线图

时间:2015-05-26 14:49:52

标签: javascript d3.js c3.js

我正在尝试使用从数据库获取一组x和y值的函数动态更新C3.js折线图。我试图用来插入数据的函数是:

function insertGraph(yAxis, xAxis, Header) {
    setTimeout(function () {
        console.log("starting");
        chart.load ({
            bindto: "#graph",
            xs: {
                'y':'x'
            },
                columns: yAxis, xAxis   
        });
    }, 100);
}

传递给函数的数据如下所示: Y轴:

["y", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]

XAXIS:

["x", 0, 131.35, 26971.3, 27044.75, 27351.4, 27404.483333333334, 27419.416666666668, 33128.96666666667, 33549.13333333333, 34049.48333333333, 77464.26666666666, 77609.71666666666, 174171.85, 259166.98333333334]

部首:

MakeModeChange #just a string

我知道我在这里做了一些根本性的错误,但任何帮助都会受到赞赏

1 个答案:

答案 0 :(得分:1)

万一有人需要它,我设法解决了我的问题。这就是你如何处理“列”部分(它需要绑定在[]中)。以下是固定代码,以防万一:

function insertGraph(yAxis, xAxis, Header) {
    setTimeout(function () {
        chart.load ({
            bindto: "#graph",
            xs: {
                'y':'x'
            },
            columns: [
                yAxis, 
                xAxis
            ]   
        });
    }, 100);
}