/
githubmirror
/
Chart.js
Обзор
Документация
Войти
/
githubmirror
/
Chart.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/types/animation.ts
70 строк
1 KB
Dan Onoshko
fix: move types to src dir to escape src / dist dirs in paths (#10993)
16 дек 2022, 15:56
Не верифицирован
16 дек 2022, 15:56
64a0278
Код
Авторство
О чём код?
import { Chart } from '../../src/types.js'; const chart = new Chart('id', { type: 'bar', data: { labels: [], datasets: [{ data: [] }] }, options: { animation: false, animations: { colors: false, numbers: { properties: ['a', 'b'], type: 'number', from: 0, to: 10, delay: (ctx) => ctx.dataIndex * 100, duration: (ctx) => ctx.datasetIndex * 1000, loop: true, easing: 'linear' } }, transitions: { show: { animation: { duration: 10 }, animations: { numbers: false } }, custom: { animation: { duration: 10 } } } }, }); const pie = new Chart('id', { type: 'pie', data: { labels: [], datasets: [{ data: [] }] }, options: { animation: false, } }); const polarArea = new Chart('id', { type: 'polarArea', data: { labels: [], datasets: [{ data: [] }] }, options: { animation: false, } });