Chart.js Samples

Explore various chart examples to see Chart.js in action.

Chart Samples

Customizing Chart.js

Chart.js is highly customizable. You can change the chart type, data, and options to suit your needs.

const chart = new Chart(ctx, {
 type: 'line',
 data: data,
 options: options
});