I am looking to remove a specific label from my chart, but whenever I try to do so, it impacts the entire functionality.
var ctx = document.getElementById("CountryChart");<br>
var myChart = new Chart(ctx, {<br><br>
type: 'bar',<br>
data: {<br>
labels: ["México", "Japon", "USA", "China", "Pakistan"],<br><br>
datasets: [{<br>
label: '# Of Votes',**--this label i want to eliminate--**<br>
data: [12, 19, 3, 5, 2, 3],<br>
backgroundColor: [<br><br>