Answers for "chartjs hide axis"

1

chart js hide legend

var myChart = new Chart(ctx, {
   type: 'line',
   data: data,
   options: {
      legend: {
         display: false //This will do the task
      }
   }
});
Posted by: Guest on July-13-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language