I have a stacked bar chart and two line charts. The second line chart is beeing stacked on top of the first line chart but I don't want this behaviour.
What I've tried is to explicitly set the stack mode on false ,but this option is not beeing executed.
...
type: 'line',
label: 'lineChart1',
data: lineData1,
borderWidth: 1,
fill: false,
options: {
legend: {
display: false
},
scales: {
xAxes: [{
stacked: false,
}],
yAxes: [{
stacked: false
}]
}
}
}
...