【Echarts】柱状图折线图改变XY轴刻度标签的现实结果

发布时间 2023-05-17 12:29:34作者: Esai-Z
axisLabel: {
            show: true,
            //重点在这⬇️⬇️⬇️
            formatter: (value) => {
              console.log(value, "=======>")
              return (value == 0 ? `${value}` : `${value} %`)
            },
            //⬆️⬆️⬆️
            textStyle: {
              color: '#9EEAFF',
              fontSize: 24,
              fontFamily: 'AppleSystemUIFont',
            },
          },