Ejemplo: la leyenda al hacer clic usa chartjs predeterminados
// 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);
};
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)