nagix / chartjs-plugin-rough

Chart.js plugin to create charts with a hand-drawn, sketchy, appearance
MIT License
87 stars 7 forks source link

Bar: keep shape #2

Closed Doidel closed 5 years ago

Doidel commented 5 years ago

Hello @nagix, thanks for this great plugin. Is it possible to keep the shape of the bar on hover? Currently, it changes / reinitializes on every mousemove. Can we prevent that somehow?

nagix commented 5 years ago

If you don't need the tooltip/hover animations on mousemove, this option disables the update (reference):

options: {
    events: ['click']
}
Doidel commented 5 years ago

Oh great, yeah I don't, that solves it for me. Many thanks!