Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I am new to pyviz, and I am looking at holoviews for interactive plotting.
I am trying to remove the heatmap (hv.HeatMap) colors, something like color='white', or color=None.
color='white'
color=None
Does anyone know how could I do it?
您可以设置 fill_alpha=1 和 line_alpha=1,例如:
hv.HeatMap(((1, 2, 3), (1, 2, 3), np.random.rand(3, 3))).opts(fill_alpha=0, line_alpha=1)