最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin1浏览0评论

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)
}
发布评论

评论列表(0)

  1. 暂无评论