里程表车速表jquery插件

时间:2011-08-10 19:02:08

标签: javascript jquery

是否有任何插件给出图表类型= ODOMETER?

如何难以找到这个,即使是我正在使用的高级图表(非常好的图表库)没有里程表,也不知道为什么。

我找到了一些“速度表”,Demo但不会帮助我。

任何人都知道任何插件或类似于使用里程表的人吗?

感谢。

3 个答案:

答案 0 :(得分:9)

Google Charts

超级易用且记录完备。


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 src="https://www.gstatic.com/charts/loader.js"></script>

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

答案 1 :(得分:1)

让这个问题保持最新状态。来自highcharts的新功能,我正在寻找这个,现在他们可以使用:

Highcharts gauge-speedometer

答案 2 :(得分:1)

可以使用jquery车速表插件。

https://github.com/rmanivannan/speedometer-jquery-plugin

可能会有所帮助