Advertisement
cornford-michael

ui-302-javascript

Oct 10th, 2017
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!-- Status Four -->
  2.             $(function() {
  3.            
  4.                 /* Bar sparklines */
  5.                 $('.four-bar-one').sparkline("html",{type: "bar", barWidth:"4",barColor:"#32c8de", height: "50"});
  6.                 $('.four-bar-two').sparkline("html",{type: "bar", barWidth:"4",barColor:"#ed5441", height: "50"});
  7.                 $('.four-bar-three').sparkline("html",{type: "bar", barWidth:"4",barColor:"#51d466", height: "50"});
  8.                 $('.four-bar-four').sparkline("html",{type: "bar", barWidth:"4",barColor:"#f8a841", height: "50"});
  9.                 $('.four-bar-five').sparkline("html",{type: "bar", barWidth:"4",barColor:"#fcd419", height: "50"});
  10.                 $('.four-bar-six').sparkline("html",{type: "bar", barWidth:"4",barColor:"#cb79e6", height: "50"});
  11.             });
  12.            
  13.             <!-- Status Five -->
  14.             $(function() {
  15.                 /* Pie sparklines */
  16.                 $('.five-pie-one').sparkline("html",{type: "pie",width: "18",sliceColors:["#ed5441","#609cec","#51d466","#fcd419"]});
  17.                
  18.                 $('.five-pie-two').sparkline("html",{type: "pie",width: "18",sliceColors:["#ed5441","#609cec","#51d466","#fcd419","#cb79e6"]});
  19.                
  20.                 $('.five-pie-three').sparkline("html",{type: "pie",width: "18",sliceColors:["#ed5441","#609cec","#51d466","#fcd419"]});
  21.                
  22.                 $('.five-pie-four').sparkline("html",{type: "pie",width: "18",sliceColors:["#ed5441","#609cec","#51d466","#fcd419","#cb79e6"]});
  23.                
  24.             });
  25.            
  26.             <!-- Status Six -->
  27.             $(function() {
  28.            
  29.                 /* Bar sparklines */
  30.                 $('.six-bar').sparkline("html",{type: "bar", barWidth:"4",barColor:"rgba(255,255,255,0.5)", height: "58"});
  31.                
  32.             });
  33.            
  34.             <!-- Status Seven -->
  35.             $(function() {
  36.            
  37.                 /* Bar sparklines */
  38.                 $('.seven-bar-one').sparkline("html",{type: "bar", barWidth:"4",barColor:"#ff0000", height: "65"});
  39.                
  40.                 $('.seven-bar-two').sparkline("html",{type: "bar", barWidth:"4",barColor:"#32c8de", height: "65"});
  41.                
  42.             });
  43.            
  44.             <!-- Status Nine -->
  45.             /* Knob */
  46.             $(document).ready(function() {
  47.                 $(".nine-knob").knob({
  48.                     width: 80,  //Width of Knob
  49.                     height: 80, //Height of Knob
  50.                     readOnly: true
  51.                 });
  52.             });
  53.            
  54.             <!-- Status Eleven -->
  55.             $(function() {
  56.                
  57.                 /* Bar sparklines */
  58.                 $('.eleven-bar-one').sparkline("html",{type: "bar", barWidth:"4",barColor:"#32c8de", height: "60"});
  59.                
  60.                 /* Pie sparklines */
  61.                 $('.eleven-pie').sparkline("html",{type: "pie",width: "80",height: "60",sliceColors:["#ed5441","#609cec","#51d466","#fcd419"]});
  62.                
  63.                 /* Line sparklines */
  64.                 $(".eleven-line").sparkline("html", {type: 'line',width: '100',height: '60',lineColor: '#32c8de',fillColor: '#ff61e7'});
  65.                
  66.                 /* Bar sparklines */
  67.                 $('.eleven-bar-two').sparkline("html",{type: "bar", barWidth:"4",barColor:"#ed5441", height: "60"});
  68.                
  69.             });
  70.            
  71.             <!-- Status Twelve -->
  72.             $(function() {
  73.                
  74.                 /* Pie sparklines */
  75.                 $('.twelve-pone').sparkline("html",{type: "pie",width: "80",height: "100",sliceColors:["#ed5441","#609cec","#51d466","#fcd419"]});
  76.                
  77.                 $('.twelve-ptwo').sparkline("html",{type: "pie",width: "80",height: "100",sliceColors:["#ed5441","#609cec","#51d466","#fcd419","#ff61e7"]});
  78.                
  79.                 $(".twelve-pthree").sparkline("html", {type: 'pie',width: '80',height: '100',sliceColors:["#ed5441","#609cec","#51d466","#fcd419"]});
  80.                
  81.                 $(".twelve-pfour").sparkline("html", {type: 'pie',width: '80',height: '100',sliceColors:["#ed5441","#609cec","#51d466"]});
  82.                
  83.             });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement