Chart.js/test/fixtures/controller.bar/bar-skip-null.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

34 lines
487 B
JavaScript

module.exports = {
config: {
type: 'bar',
data: {
labels: [0, 1, 3, 4],
datasets: [
{
data: [5, 20, 1, 10],
backgroundColor: '#00ff00',
borderColor: '#ff0000'
},
{
data: [10, null, 1, undefined],
backgroundColor: '#ff0000',
borderColor: '#ff0000'
}
]
},
options: {
skipNull: true,
scales: {
x: {display: false},
y: {display: false}
}
}
},
options: {
canvas: {
height: 256,
width: 512
}
}
};