Chart.js/test/fixtures/scale.radialLinear/anglelines-indexable.js
Evert Timberg d315934513
Radial scale scriptable options (#7471)
Scriptable radialLinear options
2020-06-11 08:49:54 -04:00

29 lines
403 B
JavaScript

module.exports = {
config: {
type: 'radar',
data: {
labels: ['A', 'B', 'C', 'D', 'E']
},
options: {
responsive: false,
legend: false,
title: false,
scale: {
gridLines: {
display: true,
},
angleLines: {
color: ['red', 'green'],
lineWidth: [1, 5]
},
pointLabels: {
display: false
},
ticks: {
display: false
}
}
}
}
};