Javascript examples for Chart.js:Chart Configuration
Using Select All and Unselect Option for chart.js
<html> <head> <title>ChartJS show/hide series</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js"></script> <script type="text/javascript"> window.onload=function(){//from ww w . jav a 2 s .c o m var barChartData = { labels: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32], datasets: [{ label: 'One', backgroundColor: 'rgba(206, 0, 23, 1)', data: [0, 1, 3, 0, 2, 0, 0, 2, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 2, 1, 0, 1, 2, 1, 1, 0, 0, 0, 2, 2, 0, 3] }, { label: 'Two', backgroundColor: 'rgba(206, 0, 23, 0.75)', data: [0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1] }, { label: 'Three', backgroundColor: 'rgba(206, 0, 23, 0.5)', data: [0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 1] }] }; var ctx = document.getElementById('canvas').getContext('2d'); var chartInstance = new Chart(ctx, { type: 'bar', data: barChartData, options: { title: { display: false, }, responsive: true, scales: { xAxes: [{ stacked: true, }], yAxes: [{ stacked: true }] } } }); $("#toggle").click(function() { chartInstance.data.datasets.forEach(function(ds) { ds.hidden = !ds.hidden; }); chartInstance.update(); }); } </script> </head> <body> <button id="toggle">show/hide all</button> <canvas id="canvas" height="500" width="800"></canvas> </body> </html>