Chartjs-Charts JS: Doughnut chart and hiding tooltip for specific data index within each dataset

0👍

those data-sets in chart.js don’t work alike series in other charts do, but are index-based. therefore you’d require only two datasets and then you’d have to map those values accordingly; so that index position 0, 1, 2, 3, ... on both of the data arrays, would sum up to 100.

Leave a comment