echars实用语句大全(一)

echars建立基本图表:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>ECharts</title>
    <!-- 引入 echarts.js -->
    <script src="echarts.min.js"></script>
</head>
<body>
    <!-- 为ECharts准备一个具备大小(宽高)的Dom -->
    <div id="main" style="width: 600px;height:400px;"></div>
    <script type="text/javascript">
        // 基于准备好的dom,初始化echarts实例
        var myChart = echarts.init(document.getElementById('main'));

        // 指定图表的配置项和数据
        var option = {
            title: {
                text: 'ECharts 入门示例'
            },
            tooltip: {},
            legend: {
                data:['销量']
            },
            xAxis: {
                data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
            },
            yAxis: {},
            series: [{
                name: '销量',
                type: 'bar',
                data: [5, 20, 36, 10, 10, 20]
            }]
        };

        // 使用刚指定的配置项和数据显示图表。
        myChart.setOption(option);
    </script>
</body>
</html>

图例样式编辑:

legend: {  //图例组件
    right:68,  //图例组件离右边的距离
    orient : 'vertical',  //布局  纵向布局
    width:40,      //图行例组件的宽度,默认自适应
    x : 'right',   //图例显示在右边
    itemWidth:10,  //图例标记的图形宽度
    itemHeight:10, //图例标记的图形高度
    data:['30%','10%','15%','20%','25%'],
    textStyle:{    //图例文字的样式
        color:'#333',
        fontSize:12
    }
},

修改x/y轴样式:

  1.  xAxis : [  
  2.          {  
  3.              type : 'value',  
  4.              splitNumber: 2,  
  5.              scale: true,  
  6.              show:false, //去掉x轴线
  7.              splitLine:{  
  8.                  show:false  
  9.                }  
  10.            }  
  11.            ],  
  12. yAxis : [  
  13.           {  
  14.                type : 'value',  
  15.                splitNumber: 2,  
  16.                scale: true,  
  17.                show:false,  //去掉y轴线
  18.                splitLine:{  
  19.                    show:false  
  20.                 }  
  21.           }  
  22.          ],  

调整图表位置:

  1. grid: {  
  2.      left: '8%',  
  3.      right: '0',  
  4.     bottom: '1%',  
  5.     containLabel: true  
  6. }  

设置series的 center:['70%','50%'],百分比。


简单雷达图:

option = {
    radar: [
        {
            indicator: [
                {text: '品牌', max: 100},
                {text: '内容', max: 100},
                {text: '可用性', max: 100},
                {text: '功能', max: 100}
            ],
            center: ['15%','40%'],
            radius: 80
        }
    ],
    series: [
        {
            type: 'radar',
             tooltip: {
                trigger: 'item'
            },
            itemStyle: {normal: {areaStyle: {type: 'default'}}},
            data: [
                {
                    value: [60,73,85,40],
                    name: '某软件'
                }
            ]
        }
    ]
};


  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值