D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
public_html
/
grievance
/
assets
/
js
/
Filename :
stacked.js
back
Copy
new Chart(document.getElementById("stackedbar"), { type: 'bar', data: { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], datasets: [{ data: [10,20,30,40,50,60,70,80], label: 'Dataset 1', backgroundColor: window.chartColors.navy, borderWidth: 1, }, { data: [30,10,70,15,30,20,70,80], label: 'Dataset 2', backgroundColor: window.chartColors.purple, borderWidth: 1, }, { data: [20,30,40,50,60,70,80,80], label: 'Dataset 3', backgroundColor: window.chartColors.grey, }] }, options: { // title: { // display: true, // text: 'Chart.js Bar Chart - Stacked' // }, tooltips: { mode: 'index', intersect: false }, responsive: true, scales: { xAxes: [{ stacked: true, }], yAxes: [{ stacked: true }] } } });