UNPKG

chart.js

Version:

Simple HTML5 charts using the canvas element.

15 lines (13 loc) 238 B
import { Chart } from '../../index.esm'; const chart = new Chart('id', { type: 'doughnut', data: { labels: [], datasets: [{ data: [], }] }, options: { radius: () => Math.random() > 0.5 ? 50 : '50%', } });