Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. window.myBarChart = new Chart(ctx, {
  2. type: 'bar',
  3. data: barChartData,
  4. options: {
  5. elements: {
  6. rectangle: {
  7. borderWidth: 2,
  8. }
  9. },
  10. layout: {
  11. padding: {
  12. top: 12
  13. }
  14. },
  15. responsive: true,
  16. legend: {
  17. position: 'right',
  18. }
  19. }
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement