Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: bars_basic.js
/* ------------------------------------------------------------------------------ * * # Echarts - Basic bars example * * Demo JS code for basic bar chart [light theme] * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var EchartsBarsBasicLight = function() { // // Setup module components // // Basic bar chart var _barsBasicLightExample = function() { if (typeof echarts == 'undefined') { console.warn('Warning - echarts.min.js is not loaded.'); return; } // Define element var bars_basic_element = document.getElementById('bars_basic'); // // Charts configuration // if (bars_basic_element) { // Initialize chart var bars_basic = echarts.init(bars_basic_element); // // Chart config // // Options bars_basic.setOption({ // Global text styles textStyle: { fontFamily: 'Roboto, Arial, Verdana, sans-serif', fontSize: 13 }, // Chart animation duration animationDuration: 750, // Setup grid grid: { left: 0, right: 30, top: 35, bottom: 0, containLabel: true }, // Add legend legend: { data: ['Year 2013', 'Year 2014'], itemHeight: 8, itemGap: 20, textStyle: { padding: [0, 5] } }, // Add tooltip tooltip: { trigger: 'axis', backgroundColor: 'rgba(0,0,0,0.75)', padding: [10, 15], textStyle: { fontSize: 13, fontFamily: 'Roboto, sans-serif' }, axisPointer: { type: 'shadow', shadowStyle: { color: 'rgba(0,0,0,0.025)' } } }, // Horizontal axis xAxis: [{ type: 'value', boundaryGap: [0, 0.01], axisLabel: { color: '#333' }, axisLine: { lineStyle: { color: '#999' } }, splitLine: { show: true, lineStyle: { color: '#eee', type: 'dashed' } } }], // Vertical axis yAxis: [{ type: 'category', data: ['Germany','France','Spain','Netherlands','Belgium'], axisLabel: { color: '#333' }, axisLine: { lineStyle: { color: '#999' } }, splitLine: { show: true, lineStyle: { color: ['#eee'] } }, splitArea: { show: true, areaStyle: { color: ['rgba(250,250,250,0.1)', 'rgba(0,0,0,0.015)'] } } }], // Add series series: [ { name: 'Year 2013', type: 'bar', itemStyle: { normal: { color: '#EF5350' } }, data: [38203, 73489, 129034, 204970, 331744] }, { name: 'Year 2014', type: 'bar', itemStyle: { normal: { color: '#66BB6A' } }, data: [39325, 83438, 131000, 221594, 334141] } ] }); } // // Resize charts // // Resize function var triggerChartResize = function() { bars_basic_element && bars_basic.resize(); }; // On sidebar width change var sidebarToggle = document.querySelector('.sidebar-control'); sidebarToggle && sidebarToggle.addEventListener('click', triggerChartResize); // On window resize var resizeCharts; window.addEventListener('resize', function() { clearTimeout(resizeCharts); resizeCharts = setTimeout(function () { triggerChartResize(); }, 200); }); }; // // Return objects assigned to module // return { init: function() { _barsBasicLightExample(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { EchartsBarsBasicLight.init(); });