[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
siakad
/
mobile
/
assets
/
js
/
dashboard
/
[
Home
]
File: dashboard-1.js
(function($) { /* "use strict" */ var dzChartlist = function(){ var screenWidth = $(window).width(); var lineChart = function(){ var options = { series: [86], chart: { type: 'radialBar', offsetY: -20, sparkline: { enabled: true } }, plotOptions: { radialBar: { startAngle: -90, endAngle: 90, track: { background: "#000", strokeWidth: '86%', margin: 5, // margin is in pixels dropShadow: { enabled: true, top: 2, left: 0, color: '#999', opacity: 1, blur: 2 } }, dataLabels: { name: { show: false }, value: { offsetY: -2, fontSize: '22px' } } } }, grid: { padding: { top: -10 } }, fill: { type: 'gradient', gradient: { shade: 'light', shadeIntensity: 0.4, inverseColors: false, opacityFrom: 1, opacityTo: 1, stops: [0, 50, 53, 91] }, }, labels: ['Average Results'], }; var chart = new ApexCharts(document.querySelector("#lineChart"), options); chart.render(); } var barChart = function(){ } /* Function ============ */ return { init:function(){ }, load:function(){ lineChart(); }, resize:function(){ } } }(); jQuery(document).ready(function(){ }); jQuery(window).on('load',function(){ setTimeout(function(){ dzChartlist.load(); }, 1000); }); jQuery(window).on('resize',function(){ }); })(jQuery);