[Chartjs]-How can i retrieve and override presets chart.js option in angular selector?

1👍

The xAxes and yAxes properties are arrays since chart.js supports having multiple axes for each. You will need to change your code to be an array of axis objects instead of an object.

yAxes: [{
  display: false
}]

Leave a comment