You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
1.2 KiB

/*!
* stack-admin-theme (https://pixinvent.com/bootstrap-admin-template/stack)
* Copyright 2018 PIXINVENT
* Licensed under the Themeforest Standard Licenses
*/
$(window).on("load",function(){require.config({paths:{echarts:"../../../app-assets/vendors/js/charts/echarts"}}),require(["echarts","echarts/chart/bar","echarts/chart/line"],function(ec){var myChart=ec.init(document.getElementById("sales-and-expenses"));chartOptions={grid:{x:40,x2:40,y:35,y2:25},tooltip:{trigger:"axis"},legend:{data:["Total Sales","Total Receipts","Total Expenses"]},color:["#3BAFDA","#37BC9B","#F6BB42"],calculable:!0,xAxis:[{type:"category",data:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}],yAxis:[{type:"value"}],series:[{name:"Total Sales",type:"bar",data:[1e3,1800,1200,0,2e3,1500,700,900,1600,1400,1550,1800]},{name:"Total Receipts",type:"bar",data:[850,1650,1e3,0,1850,1350,450,0,1500,900,1250,1500]},{name:"Total Expenses",type:"bar",data:[50,150,100,10,850,350,0,60,250,90,120,230]}]},myChart.setOption(chartOptions),$(function(){function resize(){setTimeout(function(){myChart.resize()},200)}$(window).on("resize",resize),$(".menu-toggle").on("click",resize)})})});