Chart.js/test/fixtures/controller.radar/pointStyle/value.js
Jukka Kurkela 7f97adf5a0 Move scale defining options up from ticks (#6738)
* Move scale defining options up from `ticks`
* Include `ticks.reverse` in v3-migration
2019-11-15 12:11:13 -05:00

45 lines
658 B
JavaScript

module.exports = {
config: {
type: 'radar',
data: {
labels: [0, 1, 2, 3, 4, 5],
datasets: [
{
// option in dataset
data: [0, 5, 10, null, -10, -5],
pointBorderColor: '#ff0000',
pointStyle: 'star',
},
{
// option in element (fallback)
data: [4, -5, -10, null, 10, 5],
}
]
},
options: {
legend: false,
title: false,
elements: {
line: {
fill: false,
},
point: {
backgroundColor: '#00ff00',
pointStyle: 'rect',
radius: 10,
}
},
scale: {
display: false,
min: -15
}
}
},
options: {
canvas: {
height: 512,
width: 512
}
}
};