解决echarts中饼图标签重叠的问题
饼图中的ries有个avoidLabelOverlap属性,
avoidLabelOverlap:是否启⽤防⽌标签重叠策略,默认开启,在标签拥挤重叠的情况下会挪动各个标签的位置,防⽌标签间的重叠。
当avoidLabelOverlap设置为fal时会出现以下情况
改为true之后就不会重叠
代码如下
遐迩闻名的意思var option = {
椰子水的功效
tooltip: {
trigger: "item",
formatter: "{a} <br/>{b} : {c} ({d}%)"
},
legend: {
//orient: "vertical",
x: "0%",
//y: "25%",
//y: "5%",
itemWidth: 14,
itemHeight: 14,
align: "left",
data: xData,
textStyle: {
color: "#fff"
}
},
ries: [
{
name: "危险源状态",
type: "pie",
radius: ["25%", "45%"],
center: ["50%", "60%"],
avoidLabelOverlap: true,//对,就是这⾥avoidLabelOverlap
label: {
normal: {
show: true,
position: "center"
},
emphasis: {
show: true,
textStyle: {
fontSize: "12",
fontWeight: "bold"
}
}
},
labelLine: {
normal: {
show: true
},
data: pieData
}
]
};
涌的词语
补充知识:echarts柱状图轻松实现分别采⽤两个不同单位的y轴echarts柱状图轻松实现分别采⽤两个不同单位的y轴:
秘籍:
代码
// 基于准备好的dom,初始化echarts实例
var colors = ['#0089FF','#B865DF',/*'#5ADF63','#FFDD00',*/'#224666', '#675bba']; // 指定图表的配置项和数据
option = {
/
*grid:{
y:'25%'},*/
color: colors,
/* title: {
text: '各医院指标对⽐情况',
left: 16,
textStyle: {
fontSize: 18,
color:'#0089FF'
}白蚕豆
},*/
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'cross',
crossStyle: {
color: '#999'
}
}
},
legend: {
data:['组数','CMI'],
x:'80%'
},
xAxis: [
type: 'category',
data: arr,
axisPointer: {
type: 'shadow'
},
axisLine: {
show: true,
/* lineStyle: {
color: '#05edfc'
}*/
},
axisLabel: {
show: true,
/* color: '#fff',*/
fontSize: 12,
interval: 0,
formatter:function(value) {
return value;
}
/
/fontWeight: 'bold'
}
},
],
yAxis: [
{
type: 'value',
name: '组数整体指标',
position: 'left',
splitLine:{show: true},
axisLine: {
show: fal,
/* lineStyle: {
color: '#E7E7E7'
}*/
},
axisLabel: {
show:true,
showMinLabel:true,
showMaxLabel:true,乔迁新居邀请函
formatter: '{value}'
},
团委工作总结
},
{
type: 'value',
name: 'CMI',
position: 'right',
splitLine:{show: true},
axisLine: {
show: fal,
/* lineStyle: {
color: '#E7E7E7'
}*/
},
axisLabel: {
show:true,
showMinLabel:true,
showMaxLabel:true,
formatter: '{value}'
},
},
],
ries: [
{
name:'组数',
type:'bar',
barWidth : 20,
data:arr2,
越名教而任自然yAxisIndex: 0,
/* markPoint : {
data : [
{type : 'max', name: '最⼤值'},
{type : 'min', name: '最⼩值'}
]
}*/
高校秋季开学要求
},
{
name:'CMI',
type:'bar',
barWidth : 20,
data:arr3,
yAxisIndex: 1,
/* markPoint : {
data : [
{type : 'max', name: '最⼤值'},
{type : 'min', name: '最⼩值'}
]
}*/
}
]
};
以上这篇解决echarts中饼图标签重叠的问题就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。