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 [dark theme] * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var EchartsBarsBasicDark = function() { // // Setup module components // // Basic bar chart var _barsBasicDarkExample = 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({ // Main colors color: ['#d87a80', '#5ab1ef'], // 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], color: '#fff' } }, // Add tooltip tooltip: { trigger: 'axis', backgroundColor: 'rgba(255,255,255,0.9)', padding: [10, 15], textStyle: { color: '#222', fontSize: 13, fontFamily: 'Roboto, sans-serif' }, axisPointer: { type: 'shadow', shadowStyle: { color: 'rgba(255,255,255,0.1)' } } }, // Horizontal axis xAxis: [{ type: 'value', boundaryGap: [0, 0.01], axisLabel: { color: '#fff' }, axisLine: { lineStyle: { color: 'rgba(255,255,255,0.25)' } }, splitLine: { show: true, lineStyle: { color: 'rgba(255,255,255,0.1)', type: 'dashed' } } }], // Vertical axis yAxis: [{ type: 'category', data: ['Germany','France','Spain','Netherlands','Belgium'], axisLabel: { color: '#fff' }, axisLine: { lineStyle: { color: 'rgba(255,255,255,0.25)' } }, splitLine: { show: true, lineStyle: { color: 'rgba(255,255,255,0.1)' } }, splitArea: { show: true, areaStyle: { color: ['rgba(255,255,255,0.01)', 'rgba(0,0,0,0.01)'] } } }], // Add series series: [ { name: 'Year 2013', type: 'bar', data: [38203, 73489, 129034, 204970, 331744] }, { name: 'Year 2014', type: 'bar', 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() { _barsBasicDarkExample(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { EchartsBarsBasicDark.init(); });