Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. <button type="button" class="btn btn-primary" data-toggle="modal"
  2. data-target="#graph">
  3. Graph
  4. </button>
  5.  
  6. <div class="modal fade" id="graph" tabindex="-1" role="dialog"
  7. aria-labelledby="exampleModalLabel" aria-hidden="true">
  8. <div class="modal-dialog" role="document">
  9. <div class="modal-content">
  10. <div class="modal-header">
  11. <h1>Misses</h1>
  12. <button type="button" class="close" data-dismiss="modal"
  13. aria-label="Close">
  14. <span aria-hidden="true">&times;</span>
  15. </button>
  16. </div>
  17. <div class="modal-body">
  18.  
  19. <script src="node_modules/chart.js/dist/Chart.js"></script>
  20. <canvas id="myChart" style="width: 20%; height: 50vh"></canvas>
  21.  
  22. <script>
  23. var ctx = document.getElementById('myChart');
  24. ctx.style.backgroundColor = 'rgb(0,0,0)';
  25. ctx.height = 100;
  26. var myPieChart = new Chart(ctx, {
  27. type: 'pie',
  28. data: {
  29. labels: ['Self flash', 'Aim', 'Rush', 'Solo', 'Spray control'],
  30. datasets: [{
  31. label: '# of Votes',
  32. data: [
  33. 1,
  34. 19,
  35. 3,
  36. 5,
  37. 2
  38. ],
  39. backgroundColor: [
  40. 'rgba(255, 99, 132, 0.2)',
  41. 'rgba(54, 162, 235, 0.2)',
  42. 'rgba(255, 206, 86, 0.2)',
  43. 'rgba(75, 192, 192, 0.2)',
  44. 'rgba(153, 102, 255, 0.2)'
  45. ],
  46. borderColor: [
  47. 'rgba(255, 99, 132, 1)',
  48. 'rgba(54, 162, 235, 1)',
  49. 'rgba(255, 206, 86, 1)',
  50. 'rgba(75, 192, 192, 1)',
  51. 'rgba(153, 102, 255, 1)'
  52. ],
  53. borderWidth: 1
  54. }]
  55. },
  56. options: {
  57. scales: {
  58. yAxes: [{
  59. ticks: {
  60. display: false
  61. }
  62. }]
  63. }
  64. }
  65. });
  66.  
  67. </script>
  68.  
  69. </div>
  70. <div class="modal-footer">
  71. <button type="button" class="btn btn-secondary" data-dismiss="modal">
  72. Close
  73. </button>
  74. </div>
  75. </div>
  76. </div>
  77. <br><br>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement