如何去除网格线末端的暗水平/垂直点?
这是我的代码:
ax3.set_axisbelow(True)
plt.grid(b=True, color=self.x_grid_line_color, linestyle='-')
答案 0 :(得分:1)
我怀疑你可能指的是轴刻度线,当没有网格线时,它们通常也是可见的。您可以使用ax.tick_params()
ax3.tick_params(top='off', bottom='off', left='off', right='off')
答案 1 :(得分:1)
如果我理解你的话,一种方法是使用plt.tick_params(length=0)
。