Chart.js/test/fixtures/controller.radar/borderDashOffset/value.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

48 lines
693 B
JavaScript

module.exports = {
config: {
type: 'radar',
data: {
labels: [0, 1, 2, 3, 4, 5],
datasets: [
{
// option in dataset
data: [1, 1, 1, 1, 1, 1],
borderColor: '#ff0000',
borderDash: [20],
borderDashOffset: 5.0
},
{
// option in element (fallback)
data: [0, 0, 0, 0, 0, 0]
}
]
},
options: {
elements: {
line: {
borderColor: '#00ff00',
borderDash: [20],
borderDashOffset: 0.0, // default
fill: false
},
point: {
radius: 10
}
},
layout: {
padding: 32
},
scale: {
display: false,
min: -1
}
}
},
options: {
canvas: {
height: 512,
width: 512
}
}
};