Chart.js/test/fixtures/core.scale/crossAlignment/cross-align-top-near.js
Jukka Kurkela 021561072b
Disable all plugins when options.plugins = false (#8098)
Disabling all plugins when options.plugins = false
2020-11-23 17:58:03 -05:00

29 lines
376 B
JavaScript

module.exports = {
config: {
type: 'bar',
data: {
datasets: [{
data: [1, 2, 3],
}],
labels: [['Label1', 'line 2', 'line3'], 'Label2', 'Label3']
},
options: {
scales: {
x: {
position: 'top',
ticks: {
crossAlign: 'near',
},
},
}
}
},
options: {
spriteText: true,
canvas: {
height: 256,
width: 512
}
}
};