登录
首页 >  文章 >  前端

Echarts 双轴如何同时显示标签?

时间:2024-11-28 16:36:49 331浏览 收藏

从现在开始,我们要努力学习啦!今天我给大家带来《Echarts 双轴如何同时显示标签?》,感兴趣的朋友请继续看下去吧!下文中的内容我们主要会涉及到等等知识点,如果在阅读本文过程中有遇到不清楚的地方,欢迎留言呀!我们一起讨论,一起学习!

Echarts 双轴如何同时显示标签?

echarts 双轴均显示标签

在 echarts 图表中,双轴是常见需求。有时需要在上方轴和下方轴都显示标签。然而,默认情况下,只有下方轴显示标签。本文将介绍如何为双轴都显示标签。

xaxis: [
  {
    min: starttime,
    scale: true,

    axislabel: {
      formatter: function (val) {
        return math.max(0, val - starttime) + " ms";
      },
    },
  },
  {
    min: starttime,
    scale: true,

    axislabel: {
      formatter: function (val) {
        return math.max(0, val - starttime) + " ms";
      },
    },
  },
],

如上所示,通过设置两个 x 轴,可以实现双轴。每个 x 轴具有相同的标签格式化器,确保两个轴的标签一致。

完整代码范例:

option = {
  xaxis: [
    {
      type: 'category',
      data: ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun']
    },
    {
      type: 'category',
      data: ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun']
    }
  ],
  yaxis: [
    {
      type: 'value',
      inverse: true
    },
    {
      type: 'value'
    }
  ],
  series: [
    {
      data: [120, 120, 10, 80, 70, 70, 130],
      type: 'bar',
    },
    {
      data: [10, 20, 110, 50, 30, 20, 80],
      type: 'bar',
      xaxisindex: 1,
      yaxisindex: 1
    }
  ]
};

效果如下:

[图片:双轴标签]

要仅在上方轴显示日期标签,可以自定义标签格式化器,例如:

axisLabel: {
  formatter: function (val) {
    if (val >= startTime) {
      return Math.max(0, val - startTime) + " ms";
    }
  },
},

今天关于《Echarts 双轴如何同时显示标签?》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>