[Chartjs]-Vertical Line chart with ChartJS

1👍

If you are using the beta (version 3) of Chart.js you can set the property indexAxis to y in your options object to get the desired behaviour

Example:

options: {
  indexAxis: 'y'
} 

Leave a comment