Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: tornado_negative_stack.js
/* ------------------------------------------------------------------------------ * * # Echarts - Negative stack tornado example * * Demo JS code for Negative stack tornado chart [light theme] * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var EchartsTornadoNegativeStackLight = function() { // // Setup module components // // Negative stack tornado var _tornadoNegativeStackLightExample = function() { if (typeof echarts == 'undefined') { console.warn('Warning - echarts.min.js is not loaded.'); return; } // Define elements var tornado_negative_stack_element = document.getElementById('tornado_negative_stack'); // // Charts configuration // if (tornado_negative_stack_element) { // Initialize chart var tornado_negative_stack = echarts.init(tornado_negative_stack_element); // // Chart config // // Options tornado_negative_stack.setOption({ // Define colors color: ['#2ec7c9','#5ab1ef','#b6a2de',], // Global text styles textStyle: { fontFamily: 'Roboto, Arial, Verdana, sans-serif', fontSize: 13 }, // Chart animation duration animationDuration: 750, // Setup grid grid: { left: 0, right: 10, top: 35, bottom: 0, containLabel: true }, // Add legend legend: { data: ['Profit', 'Expenses', 'Income'], 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', axisLabel: { color: '#333' }, axisLine: { lineStyle: { color: '#999' } }, splitLine: { show: true, lineStyle: { color: '#eee', type: 'dashed' } } }], // Vertical axis yAxis: [{ type: 'category', data: ['Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday'], axisTick: { show: false }, 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: 'Profit', type: 'bar', barWidth: 26, itemStyle: { normal: { label: { show: true, position: 'inside', textStyle: { fontSize: 12 } } } }, data: [200, 170, 240, 244, 200, 220, 210] }, { name: 'Income', type: 'bar', stack: 'Total', barWidth: 5, itemStyle: { normal: { label: { show: true, position: 'right', textStyle: { fontSize: 12 } } } }, data: [320, 302, 341, 374, 390, 450, 420] }, { name: 'Expenses', type: 'bar', stack: 'Total', itemStyle: { normal: { label: { show: true, position: 'left', textStyle: { fontSize: 12 } } } }, data: [-120, -132, -101, -134, -190, -230, -210] } ] }); } // // Resize charts // // Resize function var triggerChartResize = function() { tornado_negative_stack_element && tornado_negative_stack.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() { _tornadoNegativeStackLightExample(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { EchartsTornadoNegativeStackLight.init(); });