87 lines
3 KiB
JavaScript
87 lines
3 KiB
JavaScript
(function () {
|
|
"use strict";
|
|
|
|
// Chart
|
|
if ($(".vertical-bar-chart").length) {
|
|
let ctx = $(".vertical-bar-chart")[0].getContext("2d");
|
|
let myChart = new Chart(ctx, {
|
|
type: "bar",
|
|
data: {
|
|
labels: [
|
|
"Jan",
|
|
"Feb",
|
|
"Mar",
|
|
"Apr",
|
|
"May",
|
|
"Jun",
|
|
"Jul",
|
|
"Aug",
|
|
],
|
|
datasets: [
|
|
{
|
|
label: "Html Template",
|
|
barPercentage: 0.5,
|
|
barThickness: 6,
|
|
maxBarThickness: 8,
|
|
minBarLength: 2,
|
|
data: [0, 200, 250, 200, 500, 450, 850, 1050],
|
|
backgroundColor: getColor("primary"),
|
|
},
|
|
{
|
|
label: "VueJs Template",
|
|
barPercentage: 0.5,
|
|
barThickness: 6,
|
|
maxBarThickness: 8,
|
|
minBarLength: 2,
|
|
data: [0, 300, 400, 560, 320, 600, 720, 850],
|
|
backgroundColor: $("html").hasClass("dark")
|
|
? getColor("darkmode.200")
|
|
: getColor("slate.300"),
|
|
},
|
|
],
|
|
},
|
|
options: {
|
|
maintainAspectRatio: false,
|
|
plugins: {
|
|
legend: {
|
|
labels: {
|
|
color: getColor("slate.500", 0.8),
|
|
},
|
|
},
|
|
},
|
|
scales: {
|
|
x: {
|
|
ticks: {
|
|
font: {
|
|
size: 12,
|
|
},
|
|
color: getColor("slate.500", 0.8),
|
|
},
|
|
grid: {
|
|
display: false,
|
|
drawBorder: false,
|
|
},
|
|
},
|
|
y: {
|
|
ticks: {
|
|
font: {
|
|
size: "12",
|
|
},
|
|
color: getColor("slate.500", 0.8),
|
|
callback: function (value, index, values) {
|
|
return "$" + value;
|
|
},
|
|
},
|
|
grid: {
|
|
color: $("html").hasClass("dark")
|
|
? getColor("slate.500", 0.3)
|
|
: getColor("slate.300"),
|
|
borderDash: [2, 2],
|
|
drawBorder: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
}
|
|
})();
|