kurkle / chartjs-plugin-gradient

Easy gradients for Chart.js
MIT License
33 stars 6 forks source link

Registering the Plugin #53

Open fireflysemantics opened 7 months ago

fireflysemantics commented 7 months ago

Just a little note about the registration part of the readme.

I think it should be.

Registering
All charts

Chart.register(gradient);
Single chart

const chart = new Chart(ctx, {
  // ...
  plugins: [gradient]
});

So per this SO question plugins should be an array, and I also changed Signle to Single ...

Thanks for making this plugin. It rocks!!