echarts相关问题记录
1、图标距离容器边界
//echats options options : { //... grid : { top : 40, //距离容器上边界40像素 bottom: 30 //距离容器下边界30像素 } }
2、echarts大小在父窗体变化时动态调节的实现
//echart自适应 $(function(){ $(".chart_dom").each(function(){ var this_id = this.id; $(this).resize(function(){ var myChart = echarts.getInstanceByDom(document.getElementById(this_id)); myChart.resize(); }) }) });
默默搬砖中 ——假装自己是小白