echarts-treemap学习记录

option = {
  color:['#409eff'],
   title: {
        text: '水调歌头',
        left: 'center'
      },
 tooltip: {
      formatter: (info) => {
         let {name,value,rate:r} = info.data;
         return  `<div style='color:red;'>${name}</div><div>分布:${value}</div><div>比率:${r}</div>`;
        }
      },
      
  series: [
    {
      type: 'treemap',
      name: '水调歌头', //面包屑名称
      data: [
         {
          name: '明月几时有',
          value: 30,
          rate:'30%',
        },
        {
          name: '把酒问青天',
          value: 20,
          rate:'20%'
        },
        {
          name: '不知天上宫阙',
          value: 5,
          rate:'20%'
        },
        {
          name: '今夕是何年',
          value: 5,
          rate:'30%'
        },
      ],
      label: {
        position: ['10%', '10%'],
        lineHeight:30,
        width:20,
        fontSize:14,
        formatter: function (a) {
          let arr = [
            '{title|'+ a.name +'}',
            '{middle|' + '分布:' + a.value + '}',
            '{bottom|' + '比率:' + a.data.rate + '}',
            ];
            return arr.join('\n');
        },
        rich:{
          title:{
            color:'black',
            fontSize:16,
          },
          middle:{
            color:'red',
            fontSize:14,
          },
          bottom:{
            color:'yellow',
            fontSize:14,
          },
        },
        
    },
    
      emphasis :{ //鼠标移动到上面的效果
       itemStyle:{
          color:'#4c4c4c'
       },
       focus:'self', //只展示自己
    },
      select:{ //搭配selectedMode使用
      itemStyle:{
        color:'#4c4c4c'
      },
    },
    itemStyle:{
        gapWidth:5, //格子间隙
      },
    selectedMode:true,
    breadcrumb:{
       itemStyle:{
         color:'#409eff',
       },
     },
    }
  ]
};

效果:

 ​​​​​​​

 

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值