echarts 设置 y轴标题与y轴平行

yAxis: [{
  name: '充电器电流(A)',
  type: 'value',
  nameTextStyle: {
    fontSize: 14
  },
  axisLabel : {
    formatter: '{value} A'
  },
  gridIndex: 0,
  splitLine: {
    lineStyle: {
      type: 'dashed'
    }
  },
  position: 'left',--位置靠左
  nameLocation: 'middle', --位置居中
  nameGap: 60, --与y轴距离
  nameRotate: 90 --角度
}]

你可能感兴趣的:(echarts 设置 y轴标题与y轴平行)