I displaying a chart where two types are included. Now I want to hide the toolbar for one dataset. I saw some discussion like this on GitHub, but this doesn\'t bring me furt
There is now a way to configure charjs to do this; simply use the filter property:
tooltips: { filter: function (tooltipItem) { return tooltipItem.datasetIndex === 0; } }