/
githubmirror
/
Chart.js
Обзор
Документация
Войти
/
githubmirror
/
Chart.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixtures/element.point/rotation.js
54 строки
1 KB
Jacco van den Berg
Pointstyle false (#10886)
18 ноя 2022, 21:14
Не верифицирован
18 ноя 2022, 21:14
9a9ff6f
Код
Авторство
О чём код?
var gradient; var datasets = ['circle', 'cross', 'crossRot', 'dash', 'line', 'rect', 'rectRounded', 'rectRot', 'star', 'triangle', false].map(function(style, y) { return { pointStyle: style, data: Array.apply(null, Array(17)).map(function(v, x) { return {x: x, y: 11 - y}; }) }; }); var angles = Array.apply(null, Array(17)).map(function(v, i) { return -180 + i * 22.5; }); module.exports = { config: { type: 'bubble', data: { datasets: datasets }, options: { responsive: false, elements: { point: { rotation: angles, radius: 10, backgroundColor: function(context) { if (!gradient) { gradient = context.chart.ctx.createLinearGradient(0, 0, 512, 256); gradient.addColorStop(0, '#ff0000'); gradient.addColorStop(1, '#0000ff'); } return gradient; }, borderColor: '#cccccc' } }, layout: { padding: 20 }, scales: { x: {display: false}, y: {display: false} } } }, options: { canvas: { height: 256, width: 512 } } };