ZingCharts feed无法渲染图表示例代码

ZingCharts feed sample code of unable to rendering chart

我是 ZingChart.I 的新手,正在按照这里的教程进行操作 http://www.zingchart.com/docs/features/feeds/#feeds__js

我写了一个html文件ZingFeed.html

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<script>

var chartData={"refresh":{
    "type":"feed",
    "transport":"js",
    "url":"feed()",
    "interval":200
};


window.onload=function(){
    zingchart.render({
        id:"chartDiv",
        data:chartData,
        height:600,
        width:"100%"
    });
};

window.feed = function(callback) {
    var tick = {};
    tick.plot0 = parseInt(10+900*Math.random(), 10);
    callback(JSON.stringify(tick));
};

</script>
<div id='chartDiv'></div>
</body>
</html>

屏幕上没有呈现任何内容。 您的帮助将是非常有益和非常有价值的。

首先:您是否正在加载 ZingChart 库?我只是问,因为它不包含在您的演示中。如果没有,请将其粘贴到我们文件的 <head> 中:

<script src='http://cdn.zingchart.com/zingchart.min.js'></script>

您的 chartData 对象也缺少类型。

您的 chartData 对象中还缺少右括号。

这是一个工作示例。我在 ZingChart 团队工作。让我知道是否可以提供其他帮助。

<!DOCTYPE html>
<html>

<head>
    <meta charset="ISO-8859-1">
    <title>Insert title here</title>
    <script src='http://cdn.zingchart.com/zingchart.min.js'></script>
</head>

<body>
    <script>
    var chartData = {
        "type":"line",
        "refresh": {
            "type": "feed",
            "transport": "js",
            "url": "feed()",
            "interval": 200
        },
        "series":[
            {
                "values":[]
            }
        ]
    };


    window.onload = function() {
        zingchart.render({
            id: "chartDiv",
            data: chartData,
            height: 600,
            width: "100%"
        });
    };

    window.feed = function(callback) {
        var tick = {};
        tick.plot0 = parseInt(10 + 900 * Math.random(), 10);
        callback(JSON.stringify(tick));
    };
    </script>
    <div id='chartDiv'></div>
</body>

</html>