首页 前端知识 echarts点击图形显示弹窗(自定义弹窗样式)

echarts点击图形显示弹窗(自定义弹窗样式)

2024-04-29 11:04:23 前端知识 前端哥 961 657 我要收藏

echarts点击图形板块区域,弹出自定义弹窗,echarts提供了api可以配置,在tooltip属性进行配置,案例如下:

option = {
  title: {
    text: 'Referer of a Website',
    subtext: 'Fake Data',
    left: 'center'
  },
  tooltip: {
    // 鼠标是否可以进入悬浮框
    enterable: true,
    // 触发方式 mousemove, click, none, mousemove|click
    triggerOn: 'click', 
    // item 图形触发, axis 坐标轴触发, none 不触发
    trigger: 'item', 
    // 浮层隐藏的延迟
    hideDelay: 800,
    // 背景色
    backgroundColor: 'rgba(0,0,0,0)',
    formatter: function (params) {
    	return '<div class="chartLabel">'+
    	'<div class=title>'+params.name+'</div>'+
    	'</div>'
    }
  },
  legend: {
    orient: 'vertical',
    left: 'left'
  },
  series: [
    {
      name: 'Access From',
      type: 'pie',
      radius: '50%',
      data: [
        { value: 1048, name: 'Search Engine' },
        { value: 735, name: 'Direct' },
        { value: 580, name: 'Email' },
        { value: 484, name: 'Union Ads' },
        { value: 300, name: 'Video Ads' }
      ],
      emphasis: {
        itemStyle: {
          shadowBlur: 10,
          shadowOffsetX: 0,
          shadowColor: 'rgba(0, 0, 0, 0.5)'
        }
      }
    }
  ]
};

通过formatter生成自定义dom,然后就可以用css控制样式了。

转载请注明出处或者链接地址:https://www.qianduange.cn//article/5953.html
标签
评论
发布的文章

AJAX和JSON

2024-05-03 19:05:37

qml 文件中 JSON的使用

2024-05-03 19:05:03

json在线格式化代码

2024-05-03 19:05:01

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!