最近开发一个项目,需要一些仪表盘方面的JS例子,希望有的大神们发一些资料,万分感激,或者发邮箱[email protected]   非常感激

解决方案 »

  1.   

    $(document).ready(function(){
    s1 = [322];
      plot3 = $.jqplot('chart3',[s1],{
      seriesDefaults: {
      renderer: $.jqplot.MeterGaugeRenderer,
      rendererOptions: {
      min: 0,
      max: 500,   
      intervals:[200, 300, 400, 500],   
      intervalInnerRadius:150,
      label:322,   
      labelHeightAdjust:50,
      labelPosition:'inside',//标签inside or outside
      hubRadius:15    //指针中心圆点半径的大小。
     
      
          } 
          }
      });
    });