Plotly.js x 轴无法删除线

Plotly.js x-axis cannot remove line

我是 Plotly 的新手。并通过创建虚拟折线图进行练习。我在删除 x 轴显示线时遇到问题。我已将其设置为 false,使用 zeroline,并尝试使用 linecolor 使其透明,但它仍然存在。巧合的是,y 轴工作正常,两个轴的 showgrid 也是如此。

我知道这个问题可能是由 'category' 类型引起的,用于显示季节“2017-18”、“2018-19”等,但希望更有经验的人确认(或解决方法)与剧情。谢谢。


var bedford = {
x: ['2009-10', '2010-11', '2011-12', '2012-13', '2013-14', '2014-15', '2015-16', '2016-17', '2017-18', '2018-19'],
y: [2812, 2654, 2828, 3051, 2261, 2496, 2611, 2515, 2530, 2527],
name: 'Bedford',
mode: 'lines+markers',
line: {
  color: 'rgb(128,191,255)',
  width: 2
  }
};

var birmingham = {
x: ['2009-10', '2010-11', '2011-12', '2012-13', '2013-14', '2014-15', '2015-16', '2016-17', '2017-18', '2018-19'],
y: [975, 894, 881, 971, 947, 1098, 1046, 830, 800, 676],
name: 'Birmingham',
mode: 'lines+markers',
line: {
  color: 'rgb(230,0,0)',
  width: 2
  }
};

var data = [bedford, birmingham];

var layout = {
  title: 'Second Tier Clubs Average Attendances',
  xaxis: {
    title: 'Season',
    type: 'category',
    showline: false,
    linewidth: 0
  },
  yaxis: {
    title: 'Attendance',
    range: [0, 3500],
    showline: false,
    linewidth: 0
  }
};

Plotly.newPlot('attendanceDiv', data, layout);

你需要设置yaxis: {zeroline: false},请看这个fiddle: http://jsfiddle.net/9xo3rvbg/2/

var data = [bedford, birmingham];

var layout = {
  title: 'Second Tier Clubs Average Attendances',
  xaxis: {
    title: 'Season',
    type: 'category',
    zeroline: false,
    showline: false,
  },
  yaxis: {
    title: 'Attendance',
    range: [0, 3500],
    zeroline: false,
    showline: false,
  }
};

Plotly.newPlot('attendanceDiv', data, layout);