echarts插件的饼图怎么把外围边框去掉
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了echarts插件的饼图怎么把外围边框去掉相关的知识,希望对你有一定的参考价值。
参考技术A 12345678910111213141516171819202122232425262728293031323334<div id="p"></div> // 路径配置 require.config( paths: 'echarts': '/public/echarts-2.2.7/doc/example/www/js' ); // 使用 require( [ 'echarts', 'echarts/chart/pie'// 饼图 ], DrawCharts); function DrawCharts(ec) var char1 = ec.init(document.getElementById('p')); var ecConfig = require('echarts/config'); char1.on(ecConfig.EVENT.CLICK, eConsole); ......//正常的echarts //饼图点击事件 function eConsole(param) if (typeof param.seriesIndex == 'undefined') return; if (param.type == 'click') var name = param.name; alert(name) 重点就是 : var ecConfig = require('echarts/config'); char1.on(ecConfig.EVENT.CLICK, eConsole); 这两步请采纳,谢谢Echarts3的饼图自定义标注怎么设置
参考技术A markPoint :symbol :'circle',
label:
normal :
show : true,
,
itemStyle : ,
data: [
name: '某个屏幕坐标',
x: 10,
y: 10
],
本回答被提问者采纳
以上是关于echarts插件的饼图怎么把外围边框去掉的主要内容,如果未能解决你的问题,请参考以下文章