[Chartjs]-Mixed Diagram (Line/Bar) with two y-Axis won't display data on 2nd Axis

1👍

Chart.js lets you add a line to a bar chart, but not a bar to a line chart. So you need to set the chart type to bar, e.g.:

var config = {
  type: 'line', // <-- change to 'bar'!
  ...

Leave a comment