echarts里的legend属性
1.图例布局朝向(orient)
.默认横向布局,纵向布局值为’vertical’
1 2 | orient:'horizontal' orient:'vertical' |
2.图例组件的宽高(width,height)
1 2 | width:10, height:10 |
3.left,right,top,bottom
图例组件离容器左(右,上,下)侧的距离。
left 的值可以是像 20 这样的具体像素值,可以是像 ‘20%’ 这样相对于容器高宽的百分比,也可以是 ‘left’,‘center’, ‘right’。
如果 left 的值为’left’, ‘center’,‘right’,组件会根据相应的位置自动对齐.
4.图例每项之间的间隔(itemGap)
图例每项之间的间隔。横向布局时为水平间隔,纵向布局时为纵向间隔
5.图例标记的图形的宽度/高度(itemWidth/itemHeight)
6.格式化图例文本(formatter)
1 2 3 4 5 6 7 8 9 10 11 12 13 | // 使用字符串模板,模板变量为图例名称 {name} formatter: 'Legend {name}' // 使用回调函数 formatter: function (name) { return 'Legend ' + name; } formatter: name => { for (let i = 0; i < chartData.length; i++) { if (name === chartData[i].name) { return name + ': ' + chartData[i].value; } } } |
7.图例配置(tooltip)
点击图例可以显示/隐藏该图例所示图表
1 2 3 4 5 | legend:{ tooltip:{ show:true } } |
8.文本样式textStyle
1 2 3 4 5 | textStyle: { color: '#cccccc', fontSize: 24.12, padding: [0, 0, 0, 10] }, |