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 [dark theme] * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var EchartsCustomAvailableHoursDark = function() { // // Setup module components // // Bar chart with line var _customAvailableHoursDarkExample = 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: ['#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: 40, top: 35, bottom: 0, containLabel: true }, // Add legend legend: { data: ['Booked hours', 'Available hours'], 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' } }, // Horizontal axis xAxis: [{ type: 'category', data : ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'], 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: 'value', axisLabel: { color: '#fff' }, axisLine: { lineStyle: { color: 'rgba(255,255,255,0.25)' } }, splitLine: { 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)'] } } }], // Axis pointer axisPointer: [{ lineStyle: { color: 'rgba(255,255,255,0.25)' } }], // Add series series: [ { name: 'Booked hours', type: 'bar', data: [4, 8, 6, 4, 7, 5, 9], itemStyle: { normal: { label: { show: true, position: 'top', textStyle: { fontWeight: 500 } } } }, markLine: { data: [{type: 'average', name: 'Average'}] } }, { name: 'Available hours', type: 'bar', data: [6, 2, 4, 6, 3, 5, 1], itemStyle: { normal: { label: { show: true, position: 'top', textStyle: { fontWeight: 500 } } } }, markLine: { data: [{type: 'average', name: 'Average'}] } } ] }); } // // 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() { _customAvailableHoursDarkExample(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { EchartsCustomAvailableHoursDark.init(); });