score:42

Accepted answer

You set that in the plotoptions for the pie chart, not the axis :

plotOptions: {
    pie: {
        allowPointSelect: true,
        cursor: 'pointer',
            dataLabels: {
                enabled: false,
            }
        }
    }

FIDDLE

score:0

A simple way i found to remove tooltips labels that works. in the file that is usually inside the JS folder called (chart.min.js) after editing it and, click at the beginning of the file so that the cursor is at the beginning, and the search is actually started from the beginning. After searching for the word "customTooltips" without quotes, the first record found will be like this "customTooltips:!1", after changing the value to 0 it will look like this "customTooltips:!0", save the file. ready the tooltips will no longer be displayed. remember, take the first record found from left to right from the beginning to the end of the file.


Related Query

More Query from same tag