You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
690 B

  1. $(function () {
  2. $("#sparkline1").sparkline([52, 12, 44], {
  3. type: 'pie',
  4. height: '180px',
  5. sliceColors: ['#0e96ec', '#b3b3b3', '#e4f0fb']});
  6. $("#sparkline2").sparkline([5, 6, 7, 2, 0, 4, 2, 4, 5, 7, 2, 4, 12, 14, 4, 2, 14, 12, 7], {
  7. type: 'bar',
  8. barWidth:10,
  9. height: '180px',
  10. barColor: '#0e96ec',
  11. negBarColor: '#c6c6c6'});
  12. $("#sparkline3").sparkline([34, 43, 43, 35, 44, 32, 15, 22, 46, 33, 86, 54, 73, 53, 12, 53, 23, 65, 23, 63, 53, 42, 34, 56, 76, 15, 54, 23, 44], {
  13. type: 'line',
  14. lineWidth: 1,
  15. height: '180px',
  16. lineColor: '#0e96ec',
  17. fillColor: '#ffffff'
  18. });
  19. });