When plotting with the image function, white stripes appear, is it possible to remove them somehow? I will be glad to any advice!
See image.py — Bokeh 2.4.2 Documentation → and note
p.grid.grid_line_width = 0.5
You can go:
p.grid.visible = False
#alternatively
p.grid.line_width = 0
1 Like
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.