IMMREX7
$(function () {
// new Chart(document.getElementById("line_chart").getContext("2d"), getChartJs('line'));
new Chart(document.getElementById("bar_chart").getContext("2d"), getChartJs('bar'));
//new Chart(document.getElementById("radar_chart").getContext("2d"), getChartJs('radar'));
//new Chart(document.getElementById("pie_chart").getContext("2d"), getChartJs('pie'));
});
function getChartJs(type) {
var config = null;
if (type === 'bar') {
config = {
type: 'bar',
data: {
labels: ["January", "February", "March", "April", "May", "June", "July"],
datasets: [{
label: "My First dataset",
data: [28, 48, 40, 19, 86, 27, 90],
backgroundColor: '#26c6da',
strokeColor: "rgba(255,118,118,0.1)",
}]
},
options: {
responsive: true,
legend: false
}
}
}
return config;
}
Copyright © 2021 -