如何删除图形区域图的背景线

时间:2017-03-31 10:14:59

标签: javascript plotly

我不想在情节区域图的背景中划线。我的图表是这样的。 enter image description here

我想从图中删除这一行。但我没有得到任何解决方案。

我提到this code.

以下是我的代码: demo.html

{{1}}

当我扩展图形时,意味着拖动图形x轴日期隐藏,

请给我解决方案。我是plotly.js的新手

1 个答案:

答案 0 :(得分:1)

您可以使用showgrid

xaxis: {
    showgrid: false
},
yaxis: {
    showgrid: false,
    showline: true
}

更多plot.ly布局参考:https://plot.ly/javascript/reference/#layout-xaxis