Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: area_point_values.js
/* ------------------------------------------------------------------------------ * * # Echarts - Area chart with point values example * * Demo JS code for area chart with point values [light theme] * * ---------------------------------------------------------------------------- */ // Setup module // ------------------------------ var EchartsAreaPointValuesLight = function() { // // Setup module components // // Area chart with point values var _areaPointValuesLightExample = function() { if (typeof echarts == 'undefined') { console.warn('Warning - echarts.min.js is not loaded.'); return; } // Define element var area_values_element = document.getElementById('area_values'); // // Charts configuration // if (area_values_element) { // Initialize chart var area_values = echarts.init(area_values_element); // // Chart config // // Options area_values.setOption({ // Define colors color: ['#EC407A'], // 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: 10, bottom: 0, containLabel: true }, // Add tooltip tooltip: { trigger: 'axis', backgroundColor: 'rgba(0,0,0,0.75)', padding: [10, 15], textStyle: { fontSize: 13, fontFamily: 'Roboto, sans-serif' } }, // Horizontal axis xAxis: [{ type: 'category', boundaryGap: false, data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], axisLabel: { color: '#333' }, axisLine: { lineStyle: { color: '#999' } }, splitLine: { lineStyle: { color: '#eee' } } }], // Vertical axis yAxis: [{ type: 'value', axisLabel: { formatter: '{value} °C', 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: '', type: 'line', data: [10, 42, 28, 38, 10, 22, 9], smooth: true, symbolSize: 7, label: { normal: { show: true } }, areaStyle: { normal: { opacity: 0.25 } }, itemStyle: { normal: { borderWidth: 2 } } } ] }); } // // Resize charts // // Resize function var triggerChartResize = function() { area_values_element && area_values.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() { _areaPointValuesLightExample(); } } }(); // Initialize module // ------------------------------ document.addEventListener('DOMContentLoaded', function() { EchartsAreaPointValuesLight.init(); });