Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <script>
  2. $(document).ready(function() {
  3.  
  4.  
  5. var doughnutData = [
  6. {
  7. value: 48.3,
  8. color: "#81d7d8",
  9. highlight: "#23c6c8",
  10. label: "Accepted"
  11. },
  12. {
  13. value: 20.7,
  14. color: "#f58894",
  15. highlight: "#d9534f",
  16. label: "Denied"
  17. },
  18. {
  19. value: 31,
  20. color: "#f5c592",
  21. highlight: "#f8ac59",
  22. label: "Pending"
  23. }
  24. ];
  25.  
  26. var doughnutOptions = {
  27. segmentShowStroke: true,
  28. segmentStrokeColor: "#fff",
  29. segmentStrokeWidth: 2,
  30. percentageInnerCutout: 45, // This is 0 for Pie charts
  31. animationSteps: 100,
  32. animationEasing: "easeOutBounce",
  33. animateRotate: true,
  34. animateScale: false,
  35. fullWidth: true
  36. };
  37.  
  38. var ctx = document.getElementById("doughnutChart").getContext("2d");
  39. var DoughnutChart = new Chart(ctx).Doughnut(doughnutData, doughnutOptions);
  40.  
  41.  
  42.  
  43. });
  44. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement