Matthieu G.C.
Results
2
comments of
Matthieu G.C.
Since you can update your chart from JS, try this : ```js function customTooltip() { // some logic } var chart = Chartkick.charts['yourChart']; chart.options.library.tooltips.custom = customTooltip; chart.setOptions(chart.options); ```
I didn't really wanted to duplicate each of my values since it represent A LOT of values and it can be deep so I'm currently trying a workaround using a...