⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.101
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
taxi.dev-unit.com
/
public
/
assets
/
js
/
pages
/
View File Name :
peity.js
// peity $(function () { 'use strict'; // pie chart $("span.pie").peity("pie"); // line chart $("span.line1").peity("line", { fill: ["#f3f5f6"], stroke: ["#1e88e5"], height: 32, width: 120, }); $("span.line2").peity("line", { fill: ["#1e88e5"], stroke: ["#1e88e5"], height: 64, width: 250, }); $("span.line3").peity("line", { fill: ["transparent"], stroke: ["#ef5350"], height: 96, width: 250, }); // donut chart $('.donut').peity('donut'); // bar chart $(".bar").peity("bar"); // updatingChart chart var updatingChart = $(".updating-chart").peity("line", { height: 96, width: 250, fill: ["#eeeeee"], stroke: ["#1e88e5"], }); 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); });// End of use strict