Chart.js/test/fixtures/core.scale/label-align-end.js
2021-02-10 08:21:39 -05:00

33 lines
477 B
JavaScript

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