Echarts yAxisIndex配置多个y轴的最大值最小值

echarts配置多个y轴_weixin_30394333的博客-CSDN博客

echarts配置多个y轴的时候,需要加上: yAxisIndex: 1 

 yAxis: [
    {
      type: "value",
      name: "单位: 次",
      max: 1000,//要写设置最大值最小值的时候有用
      max: 0,//要写
      scale: true,
      nameGap: 40,
      nameTextStyle: {
        color: "#fff",
        fontSize: 14,
      },
      splitLine: {
        show: false,
      },
      axisTick: {
        show: false,
      },
      axisLabel: {
        show: true,
        color: "#c0c3cd", //y轴字颜色
        fontSize: 14,
      },
    },
    {
      type: "value",
      name: "单位: 次",
      max: 800,//要写设置最大值最小值的时候有用
      max: 0,//要写
      scale: true,
      nameGap: 40,
      nameTextStyle: {
        color: "#fff",
        fontSize: 14,
      },
      splitLine: {
        show: false,
      },
      axisTick: {
        show: false,
      },
      axisLabel: {
        show: true,
        color: "#c0c3cd", //y轴字颜色
        fontSize: 14,
      },
    },
   
  ],



 series: [
    {
      type: "bar",
      name: "使用量(次)",
      yAxisIndex: 0, // 配置多个y轴
      itemStyle: {
        normal: {
          label: {
            show: true, //开启显示
            position: "top", //在上方显示
            textStyle: {
              //数值样式
              color: "rgba(250,250,250,0.6)",
              fontSize: 16,
            },
          },
          borderWidth: 2,
        },
      },
      data: [], //[19, 29, 39, 81, 47, 20, 18, 39, 81, 47, 20, 18]
    },
    {
      type: "bar",
      name: "效益(人/每天)",
      yAxisIndex: 1, // 配置多个y轴
      itemStyle: {
        normal: {
          label: {
            show: true, //开启显示
            position: "top", //在上方显示
            textStyle: {
              //数值样式
              color: "rgba(250,250,250,0.6)",
              fontSize: 16,
            },
          },
          borderWidth: 2,
        },
      },
      data: [], //[12, 23, 35, 100, 53, 36, 22, 39, 81, 47, 20, 18]
    },
  ],

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值