Chartjs-Turn off point values in radar chart

0👍

I’m needing to remove the numbers from the dots in the graph. I’m using the default implementation of ng2-charts which is an Angular plugin for Chart.js. I solved the problem by adding this:

Chart.defaults.global.defaultFontSize = 0;

This is probably not the best solution, but it got me past this hump.

Thanks

Leave a comment