Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: funnel_multiple_separate.js
/* ------------------------------------------------------------------------------ * * # Echarts - Multiple funnels with separation example * * Demo JS code for multiple funnel charts with separation [dark theme] * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var EchartsFunnelMultipleSeparateDark = function() { // // Setup module components // // Multiple funnel charts with separation var _funnelMultipleSeparateDarkExample = function() { if (typeof echarts == 'undefined') { console.warn('Warning - echarts.min.js is not loaded.'); return; } // Define element var funnel_multiple_separate_element = document.getElementById('funnel_multiple_separate'); // // Charts configuration // if (funnel_multiple_separate_element) { // Initialize chart var funnel_multiple_separate = echarts.init(funnel_multiple_separate_element); // // Chart config // // Options funnel_multiple_separate.setOption({ // Colors color: [ '#2ec7c9','#b6a2de','#5ab1ef','#ffb980','#d87a80', '#8d98b3','#e5cf0d','#97b552','#95706d','#dc69aa', '#07a2a4','#9a7fd1','#588dd5','#f5994e','#c05050', '#59678c','#c9ab00','#7eb00a','#6f5553','#c14089' ], // Global text styles textStyle: { fontFamily: 'Roboto, Arial, Verdana, sans-serif', fontSize: 13 }, // Add tooltip tooltip: { trigger: 'item', backgroundColor: 'rgba(255,255,255,0.9)', padding: [10, 15], textStyle: { color: '#222', fontSize: 13, fontFamily: 'Roboto, sans-serif' }, formatter: '{a} <br/>{b}: {c}%' }, // Add legend legend: { orient: 'vertical', top: 'center', left: 0, data: ['Chrome','Opera','Safari','Firefox','IE','','Android','Windows','OS X','BlackBerry','Others'], itemHeight: 8, itemWidth: 8, textStyle: { color: '#fff' } }, // Add series series: [ { name: 'Browser', type: 'funnel', left: '30%', top: 0, width: '50%', height: '48%', itemStyle: { normal: { borderColor: '#353f53', borderWidth: 2, label: { position: 'left' } } }, data: [ {value: 60, name: 'Safari'}, {value: 30, name: 'Firefox'}, {value: 10, name: 'IE'}, {value: 80, name: 'Opera'}, {value: 100, name: 'Chrome'} ] }, { name: 'Operating system', type: 'funnel', left: '30%', top: '52%', width: '50%', height: '48%', sort: 'ascending', itemStyle: { normal: { borderColor: '#353f53', borderWidth: 2, label: { position: 'right' } } }, data: [ {value: 60, name: 'Android'}, {value: 30, name: 'Windows'}, {value: 10, name: 'OS X'}, {value: 80, name: 'BlackBerry'}, {value: 100, name: 'Others'} ] } ] }); } // // Resize charts // // Resize function var triggerChartResize = function() { funnel_multiple_separate_element && funnel_multiple_separate.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() { _funnelMultipleSeparateDarkExample(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { EchartsFunnelMultipleSeparateDark.init(); });