Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <script>$(document).ready(function(){
  2. s1 = [1];
  3.  
  4. plot0 = $.jqplot('chart0',[s1],{
  5. title: 'Network Speed',
  6. seriesDefaults: {
  7. renderer: $.jqplot.MeterGaugeRenderer,
  8. rendererOptions: {
  9. label: 'MB/s'
  10. }
  11. }
  12. });
  13. });
  14. </script>
  15. <div class="plot0" style="width:250px;height:170px;"></div>
  16.  
  17. <div id="chart0" class="plot0" style="width:250px;height:170px;"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement