首页 > 代码库 > Echarts自适应浏览器大小
Echarts自适应浏览器大小
var myChart = echarts.init(document.getElementById(‘sitesChar‘)); var option = { title : { text: ‘Nodejs站点服务器分布‘, subtext: ‘平台组‘, x:‘center‘ }, tooltip : { trigger: ‘item‘, formatter: "{a} <br/>{b} : {c} ({d}%)" }, legend: { orient : ‘vertical‘, x : ‘left‘, data: _ips }, toolbox: { show : true, feature : { mark : {show: false}, dataView : {show: true, readOnly: false}, magicType : { show: false, type: [‘pie‘, ‘funnel‘], option: { funnel: { x: ‘25%‘, width: ‘50%‘, funnelAlign: ‘left‘ //max: 1548 } } }, restore : {show: true}, saveAsImage : {show: true} } }, calculable : true, series : [ { name:‘服务器IP:站点数‘, type:‘pie‘, radius : ‘55%‘, center: [‘50%‘, ‘60%‘], data: _data } ] }; // 为echarts对象加载数据 myChart.setOption(option); // 加上这一句即可 window.onresize = myChart.resize;
Echarts自适应浏览器大小
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。