“Gráfico JS Hide Legend” Respostas de código

Gráfico JS Hide Legend

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

Legend on Click Use o padrão ChartJs

// How to implement a custom behaviour when clicking on a legend element
var original = Chart.defaults.global.legend.onClick;
Chart.defaults.global.legend.onClick = function(e, legendItem) {
  /* do custom stuff here */
  original.call(this, e, legendItem);
};
Selfish Spider

Respostas semelhantes a “Gráfico JS Hide Legend”

Perguntas semelhantes a “Gráfico JS Hide Legend”

Mais respostas relacionadas para “Gráfico JS Hide Legend” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código