Chartjs-How do you remove the data value from the mouse-over result in radar chart?

1👍

Use the tooltipTemplate option

new Chart(ctx).Radar(data, {
    tooltipTemplate: "<%=label%>",
});

Fiddle – http://jsfiddle.net/dz6mt4dy/

Leave a comment