echarts 小技巧积累

1、极坐标系柱状图调整 图形的位置,可通过设置polar属性的center参数来设置

option = {
  angleAxis: {
    max: 2,
    startAngle: 30,
    splitLine: {
      show: false
    }
  },
  radiusAxis: {
    type: 'category',
    data: ['v', 'w', 'x', 'y', 'z'],
    z: 10
  },
  polar: {
    center: ['35%', '50%'] // 调整位置,第一个参数是水平方向,第二个参数是垂直方向
  },
  series: [
    {
      type: 'bar',
      data: [4, 3, 2, 1, 0],
      coordinateSystem: 'polar',
      name: 'Without Round Cap',
      itemStyle: {
        borderColor: 'red',
        opacity: 0.8,
        borderWidth: 1
      }
    },
    {
      type: 'bar',
      data: [4, 3, 2, 1, 0],
      coordinateSystem: 'polar',
      name: 'With Round Cap',
      roundCap: true,
      itemStyle: {
        borderColor: 'green',
        opacity: 0.8,
        borderWidth: 1
      }
    }
  ],
  legend: {
    show: true,
    data: ['Without Round Cap', 'With Round Cap']
  }
};

2、lenged 超出显示...., 鼠标hover上去显示全部内容,通过设置legend 中的formatter设置 ...

再利用tooltip 实现鼠标hover 上去显示全部内容

legend: {
                show: true,
                right: -20,
                top: 12,
                orient: 'vertical',
                icon: 'circle',
                formatter: function(name){
                        return name.length>10?name.substr(0,10)+"...":name;
                },
                tooltip: {
                    show: true,
                    trigger: 'item',
                },
                textStyle:{
                    color:'#FFFFFF',
                },
            },

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值