����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.119.110.128 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/gle.gltechlimited.com/public/assets/js/custom/ |
Upload File : |
/* ------------------------------------ : Custom - Piety Charts js : ------------------------------------ */ "use strict"; $(document).ready(function() { /* -- Piety - Line Chart -- */ $(".piety-line").peity("line", { width: 50, height: 30, fill: ["rgba(80,111,228,0.5)"], stroke: "#506fe4" }); /* -- Piety - Updating Chart -- */ var updatingChart = $(".piety-updating-chart").peity("line", { width: 70, height: 30, fill: ["rgba(80,111,228,0.5)"], stroke: "#506fe4" }) setInterval(function() { var random = Math.round(Math.random() * 10) var values = updatingChart.text().split(",") values.shift() values.push(random) updatingChart .text(values.join(",")) .change() }, 1000) /* -- Piety - Bar Chart -- */ $(".piety-bar").peity("bar", { width: 50, height: 30, padding: 0.2, fill: ["#506fe4", "#f2f3f7", "#43d187"] }); /* -- Piety - Pie Chart -- */ $(".piety-pie").peity("pie", { width: 40, height: 40, fill: ["#506fe4", "#f2f3f7", "#43d187", "#08d26f"] }); /* -- Piety - Donut Chart -- */ $(".piety-donut").peity("donut", { width: 40, height: 40, fill: ["#506fe4", "#f2f3f7", "#43d187", "#08d26f"] }); /* -- Piety - Data Attributes Chart -- */ $(".piety-data-attributes span").peity("donut"); });