Chartjs-Chart.js options and documentation

0👍

Per the docs, this will change the position of the legend:

options: {
  legend: {
    display: true,
    position: 'bottom'
  }
}

Position of the legend. Possible values are ‘top’, ‘left’, ‘bottom’ and ‘right’.

Leave a comment