Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: scatter.js
/* ------------------------------------------------------------------------------ * * # Google Visualization - scatter * * Google Visualization scatter chart demonstration * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var GoogleScatterBasic = function() { // // Setup module components // // Scatter chart var _googleScatterBasic = 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 drawScatter(); // Resize on sidebar width change var sidebarToggle = document.querySelector('.sidebar-control'); sidebarToggle && sidebarToggle.addEventListener('click', drawScatter); // Resize on window resize var resizeScatterBasic; window.addEventListener('resize', function() { clearTimeout(resizeScatterBasic); resizeScatterBasic = setTimeout(function () { drawScatter(); }, 200); }); }, packages: ['corechart'] }); // Chart settings function drawScatter() { // Define charts element var scatter_chart_element = document.getElementById('google-scatter'); // Data var data = google.visualization.arrayToDataTable([ ['Age', 'Weight'], [ 8, 12], [ 4, 6], [ 11, 14], [ 4, 5], [ 3, 3.5], [ 6.5, 7], [ 7, 10], [ 6.5, 12], [ 6, 13], [ 8, 16], [ 12, 17], [ 18, 8], [ 18, 9], [ 16, 12] ]); // Options var options = { fontName: 'Roboto', height: 450, fontSize: 12, backgroundColor: 'transparent', colors: [ '#ffb980','#b6a2de','#5ab1ef','#2ec7c9', '#d87a80','#8d98b3','#e5cf0d','#97b552' ], chartArea: { left: '5%', width: '94%', height: 400 }, tooltip: { textStyle: { fontName: 'Roboto', fontSize: 13 } }, hAxis: { textStyle: { color: '#fff' }, baselineColor: '#697692', gridlines:{ color: '#4b5975' }, minorGridlines: { color: '#3e495f' }, minValue: 0, maxValue: 15 }, vAxis: { title: 'Weight', titleTextStyle: { fontSize: 13, italic: false, color: '#fff' }, textStyle: { color: '#fff' }, baselineColor: '#697692', gridlines:{ color: '#4b5975', count: 10 }, minorGridlines: { color: '#3e495f' }, minValue: 0, maxValue: 15 }, legend: 'none', pointSize: 10 }; // Draw chart var scatter = new google.visualization.ScatterChart(scatter_chart_element); scatter.draw(data, options); } }; // // Return objects assigned to module // return { init: function() { _googleScatterBasic(); } } }(); // Initialize module // ------------------------------ GoogleScatterBasic.init();