Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: available_hours.js
/* ------------------------------------------------------------------------------ * * # Echarts - Bars with line example * * Demo JS code for mixed bars/line chart [light theme] * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var EchartsCustomAvailableHoursLight = function() { // // Setup module components // // Bar chart with line var _customAvailableHoursLightExample = function() { if (typeof echarts == 'undefined') { console.warn('Warning - echarts.min.js is not loaded.'); return; } // Define element var available_hours_element = document.getElementById('available_hours'); // // Charts configuration // if (available_hours_element) { // Initialize chart var available_hours = echarts.init(available_hours_element); // // Chart config // // Options available_hours.setOption({ // Define colors color: ['#2ec7c9','#b6a2de','#5ab1ef','#ffb980','#d87a80'], // 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: 30, bottom: 0, containLabel: true }, // Add legend legend: { data: ['Booked hours', 'Available hours'], itemHeight: 8, itemGap: 20, textStyle: { padding: [0, 5] } }, // Add tooltip tooltip: { trigger: 'axis', backgroundColor: 'rgba(0,0,0,0.75)', padding: [10, 15], axisPointer: { type: 'shadow', shadowStyle: { color: 'rgba(0,0,0,0.025)' } }, textStyle: { fontSize: 13, fontFamily: 'Roboto, sans-serif' } }, // Horizontal axis xAxis: [{ type: 'category', data : ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'], axisLabel: { color: '#333' }, axisLine: { lineStyle: { color: '#999' } }, splitLine: { show: true, lineStyle: { color: '#eee', type: 'dashed' } } }], // Vertical axis yAxis: [{ type: 'value', axisLabel: { color: '#333' }, axisLine: { lineStyle: { color: '#999' } }, splitLine: { lineStyle: { color: '#eee' } }, splitArea: { show: true, areaStyle: { color: ['rgba(250,250,250,0.1)', 'rgba(0,0,0,0.01)'] } } }], // Add series series: [ { name: 'Booked hours', type: 'bar', data: [4, 8, 6, 4, 7, 5, 9], itemStyle: { normal: { color: '#B0BEC5', label: { show: true, position: 'top', textStyle: { fontWeight: 500 } } } } }, { name: 'Available hours', type: 'bar', data: [6, 2, 4, 6, 3, 5, 1], itemStyle: { normal: { color: '#29B6F6', label: { show: true, position: 'top', textStyle: { fontWeight: 500 } } } } } ] }); } // // Resize charts // // Resize function var triggerChartResize = function() { available_hours_element && available_hours.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); }); // Resize charts when hidden element becomes visible $('[data-toggle="tab"]').on('shown.bs.tab', function (e) { triggerChartResize(); }); }; // // Return objects assigned to module // return { init: function() { _customAvailableHoursLightExample(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { EchartsCustomAvailableHoursLight.init(); });