Chart.js/test/fixtures/controller.bubble/clip.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

35 lines
503 B
JavaScript

module.exports = {
config: {
type: 'line',
data: {
labels: [0, 5, 10, 15, 20, 25, 30, 50, 55, 60],
datasets: [{
data: [6, 11, 10, 10, 3, 22, 7, 24],
type: 'bubble',
label: 'test',
borderColor: '#3e95cd',
fill: false
}]
},
options: {
scales: {
x: {ticks: {display: false}},
y: {
min: 8,
max: 25,
beginAtZero: true,
ticks: {
display: false
}
}
}
}
},
options: {
canvas: {
height: 256,
width: 256
}
}
};