35 lines
610 B
JavaScript

module.exports = {
config: {
type: 'bar',
data: {
labels: [0, 1, 2, 3, 4],
datasets: [
{
data: [0, -0.01, 0.01, 30, -30],
backgroundColor: '#00ff00',
borderColor: '#000',
borderSkipped: ctx => ctx.raw === 0 ? false : 'start',
borderWidth: 4,
minBarLength: 20
}
]
},
options: {
scales: {
x: {display: false},
y: {
ticks: {
display: false
}
}
}
}
},
options: {
canvas: {
height: 512,
width: 512
}
}
};