Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 52.15.122.33
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
ornolevaxo.online /
app /
admin /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
chart.js
7.82
KB
-rw-r--r--
2023-04-17 05:33
dashboard.js
6.87
KB
-rw-r--r--
2023-04-17 05:33
documentation.js
835
B
-rw-r--r--
2023-04-17 05:33
file-upload.js
398
B
-rw-r--r--
2023-04-17 05:33
hoverable-collapse.js
806
B
-rw-r--r--
2023-04-17 05:33
off-canvas.js
185
B
-rw-r--r--
2023-04-17 05:33
tabs.js
974
B
-rw-r--r--
2023-04-17 05:33
template.js
1.96
KB
-rw-r--r--
2023-04-17 05:33
todolist.js
952
B
-rw-r--r--
2023-04-17 05:33
tooltips.js
809
B
-rw-r--r--
2023-04-17 05:33
Save
Rename
(function($) { 'use strict'; $(function() { if ($("#order-chart").length) { var areaData = { labels: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul"], datasets: [ { data: [175, 200, 130, 210, 40, 60, 25], backgroundColor: [ 'rgba(255, 193, 2, .8)' ], borderColor: [ 'transparent' ], borderWidth:3, fill: 'origin', label: "services" }, { data: [175, 145, 190, 130, 240, 160, 200], backgroundColor: [ 'rgba(245, 166, 35, 1)' ], borderColor: [ 'transparent' ], borderWidth:3, fill: 'origin', label: "purchases" } ] }; var areaOptions = { responsive: true, maintainAspectRatio: true, plugins: { filler: { propagate: false } }, scales: { xAxes: [{ display: false, ticks: { display: true }, gridLines: { display: false, drawBorder: false, color: 'transparent', zeroLineColor: '#eeeeee' } }], yAxes: [{ display: false, ticks: { display: true, autoSkip: false, maxRotation: 0, stepSize: 100, min: 0, max: 260 }, gridLines: { drawBorder: false } }] }, legend: { display: false }, tooltips: { enabled: true }, elements: { line: { tension: .45 }, point: { radius: 0 } } } var salesChartCanvas = $("#order-chart").get(0).getContext("2d"); var salesChart = new Chart(salesChartCanvas, { type: 'line', data: areaData, options: areaOptions }); } if ($("#sales-chart").length) { var SalesChartCanvas = $("#sales-chart").get(0).getContext("2d"); var SalesChart = new Chart(SalesChartCanvas, { type: 'bar', data: { labels: ["Jan", "Feb", "Mar", "Apr", "May"], datasets: [{ label: 'Offline Sales', data: [480, 230, 470, 210, 330], backgroundColor: '#8EB0FF' }, { label: 'Online Sales', data: [400, 340, 550, 480, 170], backgroundColor: '#316FFF' } ] }, options: { responsive: true, maintainAspectRatio: true, layout: { padding: { left: 0, right: 0, top: 20, bottom: 0 } }, scales: { yAxes: [{ display: true, gridLines: { display: false, drawBorder: false }, ticks: { display: false, min: 0, max: 500 } }], xAxes: [{ stacked: false, ticks: { beginAtZero: true, fontColor: "#9fa0a2" }, gridLines: { color: "rgba(0, 0, 0, 0)", display: false }, barPercentage: 1 }] }, legend: { display: false }, elements: { point: { radius: 0 } } }, }); document.getElementById('sales-legend').innerHTML = SalesChart.generateLegend(); } if ($("#north-america-chart").length) { var areaData = { labels: ["Jan", "Feb", "Mar"], datasets: [{ data: [100, 50, 50], backgroundColor: [ "#71c016", "#8caaff", "#248afd", ], borderColor: "rgba(0,0,0,0)" } ] }; var areaOptions = { responsive: true, maintainAspectRatio: true, segmentShowStroke: false, cutoutPercentage: 78, elements: { arc: { borderWidth: 4 } }, legend: { display: false }, tooltips: { enabled: true }, legendCallback: function(chart) { var text = []; text.push('<div class="report-chart">'); text.push('<div class="d-flex justify-content-between mx-4 mx-xl-5 mt-3"><div class="d-flex align-items-center"><div class="mr-3" style="width:20px; height:20px; border-radius: 50%; background-color: ' + chart.data.datasets[0].backgroundColor[0] + '"></div><p class="mb-0">Offline sales</p></div>'); text.push('<p class="mb-0">22789</p>'); text.push('</div>'); text.push('<div class="d-flex justify-content-between mx-4 mx-xl-5 mt-3"><div class="d-flex align-items-center"><div class="mr-3" style="width:20px; height:20px; border-radius: 50%; background-color: ' + chart.data.datasets[0].backgroundColor[1] + '"></div><p class="mb-0">Online sales</p></div>'); text.push('<p class="mb-0">94678</p>'); text.push('</div>'); text.push('<div class="d-flex justify-content-between mx-4 mx-xl-5 mt-3"><div class="d-flex align-items-center"><div class="mr-3" style="width:20px; height:20px; border-radius: 50%; background-color: ' + chart.data.datasets[0].backgroundColor[2] + '"></div><p class="mb-0">Returns</p></div>'); text.push('<p class="mb-0">12097</p>'); text.push('</div>'); text.push('</div>'); return text.join(""); }, } var northAmericaChartPlugins = { beforeDraw: function(chart) { var width = chart.chart.width, height = chart.chart.height, ctx = chart.chart.ctx; ctx.restore(); var fontSize = 3.125; ctx.font = "600 " + fontSize + "em sans-serif"; ctx.textBaseline = "middle"; ctx.fillStyle = "#000"; var text = "63", textX = Math.round((width - ctx.measureText(text).width) / 2), textY = height / 2; ctx.fillText(text, textX, textY); ctx.save(); } } var northAmericaChartCanvas = $("#north-america-chart").get(0).getContext("2d"); var northAmericaChart = new Chart(northAmericaChartCanvas, { type: 'doughnut', data: areaData, options: areaOptions, plugins: northAmericaChartPlugins }); document.getElementById('north-america-legend').innerHTML = northAmericaChart.generateLegend(); } }); })(jQuery);