Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. var renChart = new Chart($('#ren-chart'), {
  2. type: 'line',
  3. data: {
  4. labels: ren_labels,
  5. datasets: [{
  6. label: 'Renovation',
  7. data: ren_data,
  8. backgroundColor: 'rgba(244, 81, 30, 0.5)',
  9. borderColor: 'rgba(244, 81, 30, 0.8)',
  10. pointBackgroundColor: 'rgba(244, 81, 30, 0.5)',
  11. pointBorderColor: 'rgba(244, 81, 30, 0.8)',
  12. pointRadius: 5,
  13. showLine: false
  14. }]
  15. },
  16. options: {
  17. scales: {
  18. yAxes: [{
  19. ticks: {
  20. beginAtZero: true,
  21. stepSize: 20
  22. }
  23. }]
  24. }
  25. }
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement