UNPKG

chart.js

Version:

Simple HTML5 charts using the canvas element.

14 lines (12 loc) 250 B
import { Chart } from '../../index.esm'; const chart = new Chart('id', { type: 'line', data: { labels: [], datasets: [{ data: [], backgroundColor: ['red', 'blue'], hoverBackgroundColor: ['red', 'blue'], }] }, });