Chart.js: How do I move legend to another position?

Created on 19 May 2017  Â·  2Comments  Â·  Source: chartjs/Chart.js

In all examples on your documentation, legends are above the Charts.

How do I move the legend(s) below the chart, for example?

support

Most helpful comment

@cbll you can use the legend.position config property.

options: {
  legend: {
    position: 'bottom'
  }
}

All 2 comments

@cbll you can use the legend.position config property.

options: {
  legend: {
    position: 'bottom'
  }
}

@etimberg thank you frend

Was this page helpful?
0 / 5 - 0 ratings