I have two series with different range and I am trying to plot it in two ranges with different scale on two y-axis of line chart morris.js. Is that possible?
I only can see one serie-1 because serie_2 is plotted in value 0 because the numbers are smaller than serie_1.
new Morris.Line({
element: dest,
data:data,
xkey: 'date',
ykeys: ['serie_1','serie_2'],
labels: labels,
...
})