stimulus-chartjs
stimulus-chartjs copied to clipboard
A Stimulus controller to deal with chart.js.
First of all, thank you for your work on these nifty plugins! I was looking to incorporate ChartJs plugins to add more graph types. Take the example from https://github.com/sgratzl/chartjs-chart-wordcloud ```...
In the Chart.js docs, it gives an example of changing the format of axis labels with a callback: ``` const chart = new Chart(ctx, { type: 'line', data: data, options:...
currently in the process of migrating my chart.js to use the Stimulus controller. The code before the migration is the following: ```html .charBox { width: 700px; } // setup const...