I'm using Chart-Js and am trying to create a radar chart. How do you remove the point values in the image below?
0
votes
1 Answers
0
votes
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

.jsfile, if so, remove it -- otherwise, it would be helpful to see the code... - WhiteHat