Chart.js/test/fixtures/plugin.legend/title/bottom-center-center.js

37 lines
511 B
JavaScript
Raw Normal View History

2020-12-15 07:50:13 +01:00
module.exports = {
config: {
type: 'line',
data: {
datasets: [
{label: 'a', data: []},
{label: 'b', data: []},
{label: 'c', data: []}
]
},
options: {
plugins: {
legend: {
position: 'bottom',
align: 'center',
title: {
display: true,
position: 'center',
text: 'title'
}
}
},
scales: {
x: {display: false},
y: {display: false}
}
}
},
options: {
spriteText: true,
canvas: {
height: 256,
width: 256
}
}
};