legend.backgroundColor | Color
[ default: 'transparent' ]
图例背景色,默认透明。
颜色可以使用 RGB 表示,比如 'rgb(128, 128, 128)' ,如果想要加上 alpha 通道,可以使用 RGBA,比如 'rgba(128, 128, 128, 0.5)',也可以使用十六进制格式,比如 '#ccc'
legend.borderColor | Color
[ default: '#ccc' ]
图例的边框颜色。支持的颜色格式同 backgroundColor。
legend.borderWidth | number
[ default: 1 ]
图例的边框线宽。
legend.borderRadius | number, Array
[ default: 0 ]
圆角半径,单位px,支持传入数组分别指定 4 个圆角半径。 如:
borderRadius: 5, // 统一设置四个角的圆角大小
borderRadius: [5, 5, 0, 0] //(顺时针左上,右上,右下,左下)
grid.containLabel |boolean[ default: false ]grid 区域是否包含坐标轴的刻度标签。containLabel 为false的时候:grid.leftgrid...
grid.tooltip.axisPointer.label.show |boolean[ default: false ]是否显示文本标签。如果tooltip.axisPointer.type设置为'c...
grid.tooltip.formatter |string, Function提示框浮层内容格式器,支持字符串模板和回调函数两种形式。1 字符串模板模板变量有{a...
xAxis.nameTextStyle |Object坐标轴名称的文字样式。xAxis.nameTextStyle.color |Color坐标轴名称的颜色,默认取axisLine.lineSt...
xAxis.axisLine |Object坐标轴轴线相关设置。xAxis.axisLine.show |boolean[ default: true ]是否显示坐标轴轴线。xAxis.axisLin...
xAxis.axisPointer.lineStyle |Object对 xAxis 中对 axisPointer 线的样式进行设置。注意:当 axisPointer.type 为 'line...
当 ECharts 图表中的 y 轴为对数轴的时候,我们通过 yAxis.logBase 对其底数进行设置,这是本节的第一个内容;另外,在本节还给...
title.subtextStyle.rich |Object在rich 里面,可以自定义富文本样式。利用富文本样式,可以在标签中做出非常丰富的效果。例如:...
xAxis.axisPointer |Object用于在直角坐标系的 x 坐标轴上设置坐标轴指示器。xAxis.axisPointer.show |boolean[ default: false ...