/
githubmirror
/
Chart.js
Обзор
Документация
Войти
/
githubmirror
/
Chart.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixtures/controller.radar/borderJoinStyle/value.js
52 строки
978 B
Jukka Kurkela
Update eslint-config-chartjs to v0.3.0 (#8406)
10 фев 2021, 16:21
Не верифицирован
10 фев 2021, 16:21
ddfbcf7
Код
Авторство
О чём код?
module.exports = { config: { type: 'radar', data: { labels: [0, 1, 2, 3], datasets: [ { // option in dataset data: [3, 3, null, 3], borderColor: '#ff0000', borderJoinStyle: 'round' }, { // option in element (fallback) data: [2, 2, null, 2], borderColor: '#0000ff', borderJoinStyle: 'bevel' }, { // option in element (fallback) data: [1, 1, null, 1] } ] }, options: { elements: { line: { borderColor: '#00ff00', borderJoinStyle: 'miter', borderWidth: 25, fill: false, tension: 0 } }, layout: { padding: 32 }, scales: { r: { display: false, beginAtZero: true } } } }, options: { canvas: { height: 512, width: 512 } } };