chartjs-developers
Installation
SKILL.md
Chart.js Developer Guide (v4.5.1)
Advanced guide for creating custom plugins, extending Chart.js, and using the API.
Chart Instance API
Creating a Chart
const chart = new Chart(ctx, {
type: 'bar',
data: { /* ... */ },
options: { /* ... */ }
});