[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
siami
/
js
/
dashboard
/
[
Home
]
File: order.js
(function($) { /* "use strict" */ var dzChartlist = function(){ var screenWidth = $(window).width(); var polarAreaCharts = function(){ var options = { series: [42, 47, 52], chart: { width: 250, type: 'polarArea', sparkline: { enabled: true, }, }, labels: ['VIP', 'Reguler', 'Exclusive'], fill: { opacity: 1, colors: ['#ea4989', '#ffc977', '#7d49ea'] }, stroke: { width: 0, colors: undefined }, yaxis: { show: false }, legend: { position: 'bottom' }, plotOptions: { polarArea: { rings: { strokeWidth: 0 } } }, theme: { monochrome: { enabled: true, shadeTo: 'light', shadeIntensity: 0.6 } } }; var chart = new ApexCharts(document.querySelector("#polarAreaCharts"), options); chart.render(); } return { init:function(){ }, load:function(){ polarAreaCharts(); }, resize:function(){ } } }(); jQuery(document).ready(function(){ }); jQuery(window).on('load',function(){ setTimeout(function(){ dzChartlist.load(); }, 1000); }); jQuery(window).on('resize',function(){ }); })(jQuery);