Chart.js/test/fixtures/core.scale/ticks-mirror.js

28 lines
395 B
JavaScript
Raw Normal View History

2021-02-21 20:27:14 +01:00
module.exports = {
config: {
type: 'line',
data: {
datasets: [{
data: [1, -1, 3],
}],
labels: ['Label1', 'Label2', 'Label3']
},
options: {
scales: {
y: {
ticks: {
mirror: true
}
}
}
}
},
options: {
spriteText: true,
canvas: {
height: 256,
width: 512
}
}
};