-
Notifications
You must be signed in to change notification settings - Fork 12k
Closed
Labels
Description
Expected Behavior
Current Behavior
Steps to Reproduce
Changed order.js on master
module.exports = {
config: {
type: 'line',
data: {
labels: [0, 1, 2],
datasets: [
{
fill: "-1",
data: [0, -1, -1],
// data: [1, 0, 0], //this produced the expected
backgroundColor: '#ff0000',
},
{
fill: "-1",
data: [0, 2, 2],
backgroundColor: '#00ff00',
},
{
fill: "-1",
data: [0, 0, 1],
backgroundColor: '#0000ff',
}
]
},
options: {
elements: {
line: {
fill: true
},
point: {
radius: 0
}
},
layout: {
padding: 32
},
scales: {
x: {display: false},
y: {display: false, stacked: true}
},
plugins: {
legend: false,
title: false,
tooltip: false,
filler: true
}
}
},
options: {
canvas: {
height: 256,
width: 512
}
}
};
Context
Trying to get charts correct for Gaia Project
Environment
Git: 7ccf9e2
Used Karma Debug Runner


