码迷,mamicode.com
首页 > 其他好文 > 详细

Echarts自适应浏览器大小

时间:2016-12-23 16:45:39      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:name   readonly   这一   max   highlight   htm   pie   toolbox   radius   

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自适应浏览器大小

标签:name   readonly   这一   max   highlight   htm   pie   toolbox   radius   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!