3 个回答
option = {
  xAxis: {
    type: 'value',
  },
  yAxis: {
    type: 'category',
    data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
  },
  series: [
    {
      type:'bar',
      data:[0,0,0,0,0,0,0],
      label:{
        show:true,
        position:'right',
        formatter(params){
          // 根据params来做判断显示
          return 'xxx'
        }
      }
    },
    {
      type: 'bar',
      data: [120, 200, 150, 80, 70, 110, 130],
      label:{
        show:true,
        position:'right'
      },
    },
  ]
};

可以用两个柱状图来做此效果,其中一个柱状图数据为0,仅展示label,通过formatter来处理自定义文字。

https://echarts.apache.org/examples/zh/editor.html?c=bar-simple

可以在这个页面把代码贴进去看效果。

很明显就是修改 yAxis 相关的配置就好了,首先就是让文本位置改变到柱状图上方。
切换进去之后多半会被柱状图遮盖,所以需要修改 lineHeight 或者 padding/margin 值就行。
最后序号的问题则可以通过 formatter 格式化去设置。

image.png

option = {
  xAxis: {
    show: false,
  },
  yAxis: [{
    type: 'category',
    inverse: true,
    offset: -10,
    axisLine: 'none',
    show: true,
    axisLabel: {
      color: ['#666'],
      align: 'left',
      verticalAlign: 'bottom',
      lineHeight: 42,
      fontSize: 14,
      formatter: function (value, index) {
        return (index+1) + "." + value
      },
    },
    data: stationData,
  }],
  series: [{
    name: seriesName[1],
    type: 'bar',
    barWidth: 15,
    data: [18, 16, 17, 15, 16, 15, 14, 15, 14, 13],
  }],
};

相关文档
yAxis.axisLabel. inside - Apache ECharts
yAxis.axisLabel. padding - Apache ECharts
yAxis.axisLabel.formatter - Apache ECharts

image.png

https://echarts.apache.org/examples/zh/editor.html?c=bar-simple

option = {
  xAxis: {
    type: 'value',
    axisLine: 'none',
    splitLine: {
      show: false
    }
  },
  yAxis: {
     type: 'category',
    inverse: true,
    offset: -10,
    axisLine: 'none',
    show: true,
    axisLabel: {
      color: ['#666'],
      align: 'left',
      verticalAlign: 'bottom',
      fontSize: 18,
      formatter: function (value, index) {
        return (index  < 9 ? '0' + (index+1):index+1) + "." + value
      },
    },
    data: ['xxxxxxxx事项', 'xxxxxxxx事项', 'xxxxxxxx事项', 'xxxxxxxx事项', 'xxxxxxxx事项', 'xxxxxxxx事项', 'xxxxxxxx事项']
  },
  series: [
    {
      type:'bar',
    },
    {
      type: 'bar',
      data: [2358, 1952, 1887, 1652, 1426, 1352, 1022],
      label:{
        show:true,
        position:'right',
        color:'#45bf9c',
        fontSize:16,
        fontWeight:'bold'
      },
      itemStyle:{
        color:'#45bf9c',
        borderRadius: 50
      }
    },
  ]
};
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题