Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: area.js
/* ------------------------------------------------------------------------------ * * # Google Visualization - area * * Google Visualization area chart demonstration * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var GoogleAreaBasic = function() { // // Setup module components // // Area chart var _googleAreaBasic = 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 drawAreaChart(); // Resize on sidebar width change var sidebarToggle = document.querySelector('.sidebar-control'); sidebarToggle && sidebarToggle.addEventListener('click', drawAreaChart); // Resize on window resize var resizeAreaChart; window.addEventListener('resize', function() { clearTimeout(resizeAreaChart); resizeAreaChart = setTimeout(function () { drawAreaChart(); }, 200); }); }, packages: ['corechart'] }); // Chart settings function drawAreaChart() { // Define charts element var area_basic_element = document.getElementById('google-area'); // Data var data = google.visualization.arrayToDataTable([ ['Year', 'Sales', 'Expenses'], ['2004', 1000, 400], ['2005', 1170, 460], ['2006', 660, 1120], ['2007', 1030, 540] ]); // Options var options = { fontName: 'Roboto', height: 400, fontSize: 12, areaOpacity: 0.25, chartArea: { left: '5%', width: '94%', height: 350 }, pointSize: 7, backgroundColor: 'transparent', tooltip: { textStyle: { fontName: 'Roboto', fontSize: 13 } }, vAxis: { title: 'Sales and Expenses', titleTextStyle: { fontSize: 13, italic: false, color: '#fff' }, textStyle: { color: '#fff' }, baselineColor: '#697692', gridlines:{ color: '#4b5975', count: 10 }, minorGridlines: { color: '#3e495f' }, gridarea:{ count: 10 }, minValue: 0 }, hAxis: { textStyle: { color: '#fff' } }, legend: { position: 'top', alignment: 'center', textStyle: { fontSize: 12, color: '#fff' } }, series: { 0: { color: '#2ec7c9' }, 1: { color: '#b6a2de' } } }; // Draw chart var area_chart = new google.visualization.AreaChart(area_basic_element); area_chart.draw(data, options); } }; // // Return objects assigned to module // return { init: function() { _googleAreaBasic(); } } }(); // Initialize module // ------------------------------ GoogleAreaBasic.init();