Gráfico JS Hide Legend
var myChart = new Chart(ctx, {
type: 'line',
data: data,
options: {
legend: {
display: false //This will do the task
}
}
});
TomatenTim