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

Related issues

gouthamrv picture gouthamrv  路  3Comments

JAIOMP picture JAIOMP  路  3Comments

akashrajkn picture akashrajkn  路  3Comments

gabrieldesouza picture gabrieldesouza  路  3Comments

adriantombu picture adriantombu  路  3Comments