legend
图例组件展示不同系列的图表类型标记、颜色、和名称。可以通过点击来控制哪个系列不展示。对于饼图来说,控制哪个数据不展示。
$> echarts@5.4.0
复制
简单画一个饼图作为示例,设置legend:{show:true}
展示图例。
const options = { legend: { show: true, }, series: [ { name: "销量", type: "pie", center: ["50%", "30%"], radius: "40%", data: [ { value: 45, name: "衬衫", }, { value: 65, name: "羊毛衫", }, { value: 75, name: "雪纺衫", }, { value: 95, name: "裤子", }, { value: 145, name: "高跟鞋", }, ], }, ], };
复制
通过left\top\right\bottom
来调整图例的位置
设置图例位置时,注意饼图的位置,不要被覆盖到。
可以设置百分占比10%
,也可以设置数值20
。
const options = { legend: { show: true, bottom: 0, }, // ... };
复制
而对于left
还可以设置为left\center\right
;top
可以设置为top\middle\bottom
const options = { legend: { show: true, left: "center", top: "middle", }, // ... };
复制
orient
用来设置图例的朝向
默认方向为水平horizontal
。可以设置垂直方向vertical
,设置left:right
让它置于右侧
const options = { legend: { show: true, left: "right", top: "middle", orient: "vertical", }, //... };
复制
可以看到图例在右侧了,标记图形和文本方式是默认对齐,也会由组件的位置和orient
决定,即left:right
和orient: vertical
时,图例会在右侧
也可以通过align
设置对齐方式,可选值为auto\left\right
const options = { legend: { show: true, left: "right", top: "middle", orient: "vertical", align: "left", }, // ... };
复制
itemWidth\itemHeight
设置图例图形的大小
默认的图形大小itemWidth:25,itemHeight:14
,长方形。设置为正方形展示
const options = { legend: { show: true, // ... itemWidth: 10, itemHeight: 10, }, // ... };
复制
通过itemGap
设置图例之间的间距,默认为10
const options = { legend: { show: true, // ... itemWidth: 10, itemHeight: 10, itemGap: 20, }, // ... };
复制
通过icon
设置图形的类型,默认为roundRect
,可选值
circle\rect\roundRect\triangle\diamond\pin\arrow\none
- 圆、矩形、圆角矩形、三角形、菱形、水滴形、箭头image://${url}
设置为图片,可以是图片路径,也可以是 dataURIbase64
path://
设置任意矢量路径
const options = { legend: { show: true, // ... itemWidth: 20, itemHeight: 20, itemGap: 20, icon: "path://M 200 100 L 300 100 L 200 400 L 300 500 z", }, // ... };
复制
可以通过itemStyle
设置图形样式,一般不会设置,默认继承系列里的样式。
可以设置颜色color
、边框border
、阴影shandow
等。
const options = { legend: { show: true, // ... itemWidth: 20, itemHeight: 20, itemGap: 20, icon: "path://M 200 100 L 300 100 L 200 400 L 300 500 z", itemStyle: { color: "red", }, }, // ... };
复制
当自定义图例图形时,一些图形的样式设置不会影响到自定义图形。
formatter
来格式化图例文本
格式化图例文本,可以通过字符串模板和回调函数处理。都只有一个变量name
可供使用
不支持
html
渲染,所以有很多限制。
const options = { legend: { show: true, // ... formatter: "hello {name}", }, // ... };
复制
回调函数可以通过查找name
的方式,找到数据项,渲染数值或其他内容.
const options = { legend: { show: true, // ... formatter(name) { let info = $this.data.find((item) => item.name == name); return `${name}\r${info.value}`; }, }, // ... };
复制
通过textStyle
文本样式,包括颜色、字体、文本块边框、文本块阴影、文字块背景色、文本描边、文本阴影。
const options = { legend: { show: true, // ... formatter(name) { let info = $this.data.find((item) => item.name == name); return `${name}\r${info.value}`; }, textStyle: { color: "green", borderWidth: 1, borderColor: "#000", textBorderWidth: 2, textBorderColor: "red", }, }, // ... };
复制
通过rich
属性,自定义富文本样式,可以设置分割文字块设置不同的样式。
const options = { legend: { show: true, // ... formatter(name) { let info = $this.data.find((item) => item.name == name); return `{name|${name}}\r {value|${info.value}}`; }, textStyle: { width: 300, rich: { name: { color: "red", }, value: { color: "green", fontSize: 18, }, }, }, }, // ... };
复制
对于 rich 富文本,可以设置每一块文字的宽度,不生效时注意版本,可以设置textStyle.width
尝试。
const options = { legend: { show: true, // ... formatter(name) { let info = $this.data.find((item) => item.name == name); return `{name|${name}}\r {value|${info.value}}`; }, textStyle: { width: 300, rich: { name: { color: "red", width: 50, }, value: { color: "green", fontSize: 18, }, }, }, }, // ... };
复制
data
定义图例数据
默认的图例数据会从系列中获取,如果需要设置不同的图例样式或者不需要展示某个系列图例则可设置数据。
图例的数据字段name
必须是系列中的系列名称或数据名,测试不展示最后一项高跟鞋
.并设置数据名为雪纺衫
的图例图形为pin
const options = { legend: { show: true, // ... data: [ { name: "衬衫", }, { name: "羊毛衫", }, { name: "雪纺衫", icon: "pin", }, { name: "裤子", }, ], }, // ... };
复制
type:scroll
设置滚动翻页的图例
图例比较多时,可能就放不下了,除了控制展示图例数。可以设置滚动图例,增加数据超过图表高度。
const options = { legend: { type: "scroll", show: true, left: "right", top: 50, height: "60%", orient: "vertical", // ... }, };
复制
通过设置属性top: 50, height: "60%",
调整图例的位置。
通过以下属性控制图例的样式,包括翻页按钮位置、翻页信息数据格式、翻页图标、翻页信息文字样式
pageFormatter
翻页信息显示格式,可用变量current/total
当前页、总数pageTextStyle
翻页信息中文本的样式设置...
配置tooltip
显示图例文本
tooltip
配置同全局的 tooltip 配置项。设置属性show: true
,展示图例文本的 tooltip 提示。
const options = { legend: { show: true, // ... tooltip: { show: true, }, }, tooltip: { show: true, }, };
复制
受全局tooltip
配置属性影响,全局 tooltip 必须配置为show:true
。图例中的 tooltip 才会生效。
针对图例文本过长时,做配置截断处理。然后通过tooltip
展示所有内容,设置 textStylewidth
文本宽度,超出后样式overflow: "truncate"
const options = { legend: { show: true, // ... tooltip: { show: true, }, textStyle: { width: 80, overflow: "truncate", }, }, tooltip: { show: true, confine: true, }, };
复制
为了防止 tooltip 超出图表被遮挡,可以设置confine:true
将 tooltip 限制在图表内。
也可以通过formatter
格式化文本,手动截断文本。echarts.format.truncateText()
方法可以裁剪文本,参数:包括文本、内容宽度、字体样式、省略符内容、文本样式配置
这是方法的源代码贴在这
function truncateText(text, containerWidth, font, ellipsis, options) { if (!containerWidth) { return ""; } var textLines = (text + "").split("\n"); options = prepareTruncateOptions(containerWidth, font, ellipsis, options); for (var i = 0, len = textLines.length; i < len; i++) { textLines[i] = truncateSingleLine(textLines[i], options); } return textLines.join("\n"); }
复制
多个图例legend
配置
支持传入数组对象展示多个图例。
const options = { legend: [ { show: true }, { show: true, // ... }, ], };
复制
这样当图例很多时,又不想要滚动,就可以使用多个图例方式,放置不同的位置。通过legend.data
分配每一个图例要展示的数据
const options = { legend: [ { show: true, left: "left", top: 50, height: "60%", orient: "vertical", align: "right", // ... }, { show: true, left: "right", top: 50, height: "60%", orient: "vertical", align: "left", // ... }, ], };
复制
主要是为了做一个引导说明,通过legend
可以实现哪些功能,详细查看文档配置。
Echarts - legend