Google Gauge无法显示

时间:2016-09-05 14:10:05

标签: javascript html

我正在尝试创建一个基于HTML的仪表板,我们可以从中监控工作周围不同服务器机柜的温度。我的问题是我根本无法显示仪表。下面是我到目前为止的代码。

由于

<!DOCTYPE html?>
<html>
<head>
    <title>BCS Temperature Monitor</title>
    <link rel="stylesheet" type="text/css" href="style.css"/>
    <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"/>
    <script type="text/javascript">
        google.charts.load('current', {'packages':['gauge']]);
        google.charts.setOnLoadCallback(drawChart);

        function drawChart (){

            var data = google.visualization.arrayToDataTable([
                ['Label', 'Value'],
                ['Memory', 80],
                ['CPU', 55],
                ['Network', 68]
            ]);

            var options = {
                width: 400, height: 120,
                redFrom: 90, redTo: 100,
                yellowFrom: 75, yellowTo: 90,
                minorTicks: 5
            };

            var chart = new google.visualization.Gauge(document.getElementById('chart_div'));

            chart.draw(data, options);

            setInterval(function() {
                data.setValue(0, 1, 40 + Math.round(60 * Math.random)));
                chart.draw(data, options);
            }, 13000);

            setInterval(function() {
                data.setValue(1, 1, 40 + Math.round(60 * Math.random)));
                chart.draw(data, options);
            }, 5000);

            setInterval(function() {
                data.setValue(2, 1, 60 + Math.round(20 * Math.random)));
                chart.draw(data, options);
            }, 26000);
        }

    </script>

</head>

<body>

    <div class="page">

        <div class="wrapper" id="header">
            <div id="chart_div" style="width: 400px; height: 120px;">Hello</div>
        </div>

        <div class="wrapper" id="content">
        </div>

        <div class="wrapper" id="footer">
        </div>


    </div>

</body>

1 个答案:

答案 0 :(得分:1)

有一些小错误,请看这里的工作演示: http://codepen.io/anon/pen/wzBArA

  • 无法使用<script />关闭脚本代码,您必须使用<script></script>
  • 您的热线电话google.charts.load使用了第二个]而不是}
  • setInterval致电
  • 之后,您的)方法额外增加了Math.random