Chart.js/test/fixtures/core.scale/ticks-mirror.js
2021-02-21 14:27:14 -05:00

28 lines
395 B
JavaScript

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
}
}
};