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

echarts radar 一些会用到了的功能记录

时间:2019-09-24 17:58:05      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:param   图标   alt   echart   eve   orm   echarts   charts   形状   

技术图片

点击雷达图小标题进行相应操作

// options中添加
 radar:{
     triggerEvent: true
  }

 // 添加监听事件, 点击雷达图标题
    this.radarEchart.on(‘click‘, function (params) {
        alert(params.name)
        if (params === ‘实线‘) {
          console.log(1)
        }
      })    

 

点和线的控制

 

  smooth: true, // 圆点是否实心
  symbol: ‘circle‘,     //设定形状为圆点
  symbolSize: 5,   //设定实心点的大小
  itemStyle: { 
      normal: {
      color: ‘#F9713C‘ // 点的颜色
      }
   },
  lineStyle: {
    color: ‘rgba(1, 1, 1, 0)‘, //线的颜色
   },

 

echarts radar 一些会用到了的功能记录

标签:param   图标   alt   echart   eve   orm   echarts   charts   形状   

原文地址:https://www.cnblogs.com/xianhuiwang/p/11579058.html

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