yAxisIndex

使用的 y 轴的 index,在单个图表实例中存在多个 y轴的时候有用。
https://echarts.apache.org/zh/option.html#series-line.yAxisIndex

双Y轴在线案例
https://echarts.apache.org/examples/zh/editor.html?c=mix-line-bar
https://echarts.apache.org/examples/zh/editor.html?c=multiple-y-axis
image.png

多Y轴刻度对齐

yAxis
alignTicks: true

  1. {
  2. yAxis: [
  3. {
  4. type: "value",
  5. alignTicks: true, // 配置多坐标轴标签对齐
  6. axisLabel: {
  7. show: true,
  8. color: "#999",
  9. fontSize: 12,
  10. lineHeight: 14,
  11. },
  12. splitLine: { show: false },
  13. },
  14. ],
  15. }

legend图例

数组

  1. legend: {
  2. itemWidth: 12,
  3. itemHeight: 10,
  4. itemGap: 16, // 设置间距
  5. data: [
  6. {name: '进度', icon: 'rect'},
  7. {name: '总量', icon: 'rect'},
  8. ]
  9. }

icon形状

没有 line 线状图例,可以设置 itemHeight: 2来实现
icon 类型包括 circle,rect,line,roundRect,triangle,diamond,pin,arrow,none

icon 展示
circle 圆形
rect 矩形
roundRect 圆角矩形
triangle 三角形
diamond 菱形
pin 水滴
arrow 箭头
none 不显示图标