Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: bubble.js
/* ------------------------------------------------------------------------------ * * # Google Visualization - bubbles * * Google Visualization bubble chart demonstration * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var GoogleBubbleChart = function() { // // Setup module components // // Bubble chart var _googleBubbleChart = 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 drawBubbleChart(); // Resize on sidebar width change var sidebarToggle = document.querySelector('.sidebar-control'); sidebarToggle && sidebarToggle.addEventListener('click', drawBubbleChart); // Resize on window resize var resizeBubbleChart; window.addEventListener('resize', function() { clearTimeout(resizeBubbleChart); resizeBubbleChart = setTimeout(function () { drawBubbleChart(); }, 200); }); }, packages: ['corechart'] }); // Chart settings function drawBubbleChart() { // Define charts element var bubble_chart_element = document.getElementById('google-bubble'); // Data var data = google.visualization.arrayToDataTable([ ['ID', 'Life Expectancy', 'Fertility Rate', 'Region'], ['CAN', 82.66, 1.67, 'North America'], ['DEU', 79.84, 1.36, 'Europe'], ['DNK', 70.6, 1.84, 'Europe'], ['EGY', 72.73, 2.78, 'Middle East'], ['GBR', 75.05, 2, 'Europe'], ['IRN', 72.49, 0.7, 'Middle East'], ['IRQ', 68.09, 4.77, 'Middle East'], ['ISR', 81.55, 3.96, 'Middle East'], ['RUS', 68.6, 1.54, 'Europe'], ['USA', 78.09, 3.05, 'North America'] ]); // Options var options = { fontName: 'Roboto', height: 450, fontSize: 12, backgroundColor: 'transparent', colors: [ '#2ec7c9','#b6a2de','#5ab1ef','#ffb980', '#d87a80','#8d98b3','#e5cf0d','#97b552' ], chartArea: { left: '5%', width: '94%', height: 400 }, tooltip: { textStyle: { fontName: 'Roboto', fontSize: 13 } }, vAxis: { title: 'Fertility Rate', titleTextStyle: { fontSize: 13, italic: false, color: '#fff' }, textStyle: { color: '#fff' }, baselineColor: '#697692', gridlines:{ color: '#4b5975', count: 10 }, minorGridlines: { color: '#3e495f' }, minValue: 0 }, hAxis: { textStyle: { color: '#fff' }, baselineColor: '#697692', gridlines:{ color: '#4b5975', count: 10 }, minorGridlines: { color: '#3e495f' } }, bubble: { textStyle: { auraColor: 'none', color: '#fff' }, opacity: 1, stroke: 'transparent' }, legend: { position: 'top', alignment: 'center', textStyle: { fontSize: 12, color: '#fff' } } }; // Draw chart var bubble = new google.visualization.BubbleChart(bubble_chart_element); bubble.draw(data, options); } }; // // Return objects assigned to module // return { init: function() { _googleBubbleChart(); } } }(); // Initialize module // ------------------------------ GoogleBubbleChart.init();