javascript - Completely hiding the y-axis in echart bar chart - Stack Overflow

Using echarts 3.8.5, I am trying to create a bar chart with no y-axis labels.Here is a snippet of my op

Using echarts 3.8.5, I am trying to create a bar chart with no y-axis labels.

Here is a snippet of my options object:

const options = {
  yAxis: [
    {
      show: false,
      type: "log",
    }
  ],

  // additional config...
};

The result looks something like this:

There is an empty white space to the left of the chart. It appears the space for the y-axis labels is being reserved, even though I set show to false. How can I get the chart to extend all the way to the left, without having this empty space?

Using echarts 3.8.5, I am trying to create a bar chart with no y-axis labels.

Here is a snippet of my options object:

const options = {
  yAxis: [
    {
      show: false,
      type: "log",
    }
  ],

  // additional config...
};

The result looks something like this:

There is an empty white space to the left of the chart. It appears the space for the y-axis labels is being reserved, even though I set show to false. How can I get the chart to extend all the way to the left, without having this empty space?

Share edited Dec 12, 2017 at 17:36 Matt Fletcher 9,2908 gold badges44 silver badges61 bronze badges asked Dec 12, 2017 at 16:52 SethSeth 631 gold badge1 silver badge3 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

"y-axis: show" is actually for the y-axis line itself. I don't think it has to do with the labels themselves. I think echarts is trying to keep those labels in there, but they are just not showing.

Note: Just got home from work and my original answer did not work. Are you using a grid? I just tested it and use something like this:

myChart.setOptions({
    grid: {
       left: '15px',
       right: '15px'
    },
.........(add more options as needed here)
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743685904a4490141.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信