ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/admin.adimi/layout/bootstrap4/global_assets/js/demo_pages/charts/google/pies/ |
/* ------------------------------------------------------------------------------ * * # Google Visualization - donut chart * * Google Visualization donut chart demonstration * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var GoogleDonutBasic = function() { // // Setup module components // // Donut chart var _googleDonutBasic = function() { if (typeof google == 'undefined') { console.warn('Warning - Google Charts library is not loaded.'); return; } // Initialize chart google.charts.load('current', { callback: function () { // Draw chart drawDonut(); // Resize on sidebar width change $(document).on('click', '.sidebar-control', drawDonut); // Resize on window resize var resizeDonutBasic; $(window).on('resize', function() { clearTimeout(resizeDonutBasic); resizeDonutBasic = setTimeout(function () { drawDonut(); }, 200); }); }, packages: ['corechart'] }); // Chart settings function drawDonut() { // Define charts element var donut_chart_element = document.getElementById('google-donut'); // Data var data = google.visualization.arrayToDataTable([ ['Task', 'Hours per Day'], ['Work', 11], ['Eat', 2], ['Commute', 2], ['Watch TV', 2], ['Sleep', 7] ]); // Options var options_donut = { fontName: 'Roboto', pieHole: 0.55, height: 300, width: 500, chartArea: { left: 50, width: '90%', height: '90%' } }; // Instantiate and draw our chart, passing in some options. var donut = new google.visualization.PieChart(donut_chart_element); donut.draw(data, options_donut); } }; // // Return objects assigned to module // return { init: function() { _googleDonutBasic(); } } }(); // Initialize module // ------------------------------ GoogleDonutBasic.init();