|
Server IP : 111.118.215.156 / Your IP : 216.73.216.167 Web Server : Apache System : Linux md-in-26.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : azasoqqa ( 1858) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/azasoqqa/public_html/vsrcbse.com/admin/javascript/pages/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
/*! ========================================================================
* dashboard.js
* Page/renders: index.html
* Plugins used: flot, sparkline, selectize
* ======================================================================== */
$(function () {
// Selectize
// ================================
(function () {
$("#selectize-customselect").selectize();
})();
// Sparkline
// ================================
(function () {
$(".sparklines").sparkline("html", {
enableTagOptions: true
});
})();
// Area Chart - Spline
// ================================
(function () {
$.plot("#chart-audience", [{
label: "Visit (All)",
color: "#DC554F",
data: [
["Jan", 99],
["Feb", 84],
["Mar", 60],
["Apr", 143],
["May", 39],
["Jun", 86],
["Jul", 87]
]
}, {
label: "Visit (Mobile)",
color: "#9365B8",
data: [
["Jan", 83],
["Feb", 32],
["Mar", 16],
["Apr", 47],
["May", 98],
["Jun", 84],
["Jul", 18]
]
}], {
series: {
lines: {
show: false
},
splines: {
show: true,
tension: 0.4,
lineWidth: 2,
fill: 0.8
},
points: {
show: true,
radius: 4
}
},
grid: {
borderColor: "rgba(0, 0, 0, 0.05)",
borderWidth: 1,
hoverable: true,
backgroundColor: "transparent"
},
tooltip: true,
tooltipOpts: {
content: "%x : %y",
defaultTheme: false
},
xaxis: {
tickColor: "rgba(0, 0, 0, 0.05)",
mode: "categories"
},
yaxis: {
tickColor: "rgba(0, 0, 0, 0.05)"
},
shadowSize: 0
});
})();
});