Chart.js/test/fixtures/core.scale/ticks-mirror-x.js
2021-04-10 09:01:38 -04:00

31 lines
444 B
JavaScript

module.exports = {
config: {
type: 'line',
data: {
datasets: [{
data: [1, -1, 3],
}],
labels: ['Label1', 'Label2', 'Label3']
},
options: {
scales: {
x: {
ticks: {
mirror: true
}
},
y: {
display: false
}
}
}
},
options: {
spriteText: true,
canvas: {
height: 256,
width: 512
}
}
};