首页 > 其他 > 详细

Echarts自适应浏览器大小

时间:2016-12-23 16:43:04      阅读:306      评论:0      收藏:0      [点我收藏+]
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自适应浏览器大小

原文:http://www.cnblogs.com/henuyuxiang/p/6215094.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!