score:5

Accepted answer

this will be solved if you use the current master (instead of the one tagged v1.01-beta.5) - you don't need to set any options.


fiddle - http://fiddle.jshell.net/n7jgo7oh/


enter image description here

score:0

if in your source you are defining and drawing line before bar try to invert definition and drawing: bar first then line

score:5

you have to declare the line chart first in the dataset and then the bar chart:

datasets: [
        {
          type: 'line',
          yaxisid: 'y-axis-1',
          fill: false,
          pointradius: 0,
          label: 'nota media',
          backgroundcolor: '#ed7d31',
          bordercolor: '#ed7d31',
          data: [60, 59, 80, 81]
        },
        {
          type: 'bar',
          yaxisid: 'y-axis-0',
          label: 'observaciones',
          backgroundcolor: '#5b9bd5',
          data: [40, 20, 12, 39]
        }
      ],

Related Query