Chart.js/test/fixtures/controller.doughnut/single-slice-circumference-405.js
Jukka Kurkela 9fb18c2fd7
Fix typo, add tests to catch (#8768)
* Fix typo, add tests to catch
* Tune tests
2021-04-01 11:11:14 -04:00

22 lines
351 B
JavaScript

module.exports = {
threshold: 0.05,
config: {
type: 'doughnut',
data: {
labels: ['A'],
datasets: [{
data: [1],
backgroundColor: 'rgba(0,0,0,0.3)',
borderColor: 'rgba(0,0,0,0.5)',
circumference: 405
}]
},
},
options: {
canvas: {
width: 256,
height: 256
}
}
};