Chart.js/test/fixtures/scale.radialLinear/gridlines-scriptable.js
Jukka Kurkela cfd9c98575
Option resolution with proxies (#8374)
* Option resolution with proxies

* Remove plugin fallback to root options/defaults

* Update core plugins, reduntant font fallbacks

* Add some notes
2021-02-15 14:42:32 -05:00

35 lines
734 B
JavaScript

module.exports = {
config: {
type: 'radar',
data: {
labels: ['A', 'B', 'C', 'D', 'E']
},
options: {
responsive: false,
scales: {
r: {
gridLines: {
display: true,
color: function(context) {
return context.index % 2 === 0 ? 'green' : 'red';
},
lineWidth: function(context) {
return context.index % 2 === 0 ? 5 : 1;
},
},
angleLines: {
color: 'rgba(255, 255, 255, 0.5)',
lineWidth: 2
},
pointLabels: {
display: false
},
ticks: {
display: false
}
}
}
}
}
};