echarts饼图图例形状及位置echarts 饼图图例形状及位置
option = {
title : {
text: '图例形状及位置',
subtext: '',
x:'center'
},
tooltip : {
trigger: 'item',
formatter: "{a} <br/>{b} : {c} ({d}%)"
},
legend: {
orient: '',
x: 'left', //可设定图例在左、右、居中 left center right
y: 'bottom', //可设定图例在上、下、居中left center right
data: [
{
name:'圆圈',
icon : 'circle', // 图例形状:圆圈
textStyle: {
color: 'red'// 图例⽂字颜⾊
}
},
{
name:'长⽅形',
icon : 'rect', // 图例形状:长⽅形
textStyle: {
color: '#fff'// 图例⽂字颜⾊
}
},
{
name:'圆⾓长⽅形',
icon : 'roundRect', // 图例形状:圆⾓长⽅形
textStyle: {
color: '#fff'// 图例⽂字颜⾊
}
},
{
name:'三⾓形',
icon : 'triangle', // 图例形状:三⾓形
textStyle: {
color: 'blue'// 图例⽂字颜⾊
}
},
{
name:'菱形',
icon : 'diamond', // 图例形状:菱形
textStyle: {
color: '#fff'// 图例⽂字颜⾊
}
},
{
name:'箭头',
icon : 'arrow', // 图例形状:箭头
textstyletextStyle: {
color: '#fff'// 图例⽂字颜⾊
}
},
{
name:'圆形',
icon : 'pin', // 图例形状:圆形
textStyle: {
color: '#fff'// 图例⽂字颜⾊
}
},
{
name:'⾃定义图⽚',
textStyle: {
color: 'red'// 图例⽂字颜⾊
},
icon:'image://./img/pie_1.png'//格式为'image://+icon⽂件地址',其中image::后的//不能省略
},
],
},
series : [
{
name: '访问来源',
type: 'pie',
radius : '55%',
center: ['50%', '60%'],
data:[
{value:335, name:'圆圈'},
{value:310, name:'长⽅形'},
{value:234, name:'圆⾓长⽅形'}, {value:135, name:'三⾓形'},
{value:1548, name:'菱形'},
{value:1548, name:'箭头'},
{value:1548, name:'圆形'},
{value:1548, name:'⾃定义图⽚'} ],
itemStyle: {
emphasis: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)' }
}
}
]
};
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论