-
-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsitencies with hvplot.extension(compatibility)
#1381
Comments
In fact you need to reference HoloViews docs/code, it provides the interface between hvPlot and the plotting backends (Bokeh, Matplotlib, Plotly). In other words, neither hvPlot nor HoloViews transparently passes plotting options to the backends, the supported ones are defined in HoloViews.
More precision and examples would be welcome. |
Unfortunately there is no one good reference page to navigate and find what the available options are. In some places it even mentions using
I am doing something like overlay = param.rx(holoviews.Overlay())
overlay *= plotter.plot(data, x="coord.",
indexers={None: rx_bands[:rx_occupied]},
plot_opts={"line_dash": "solid"})
overlay *= plotter.plot(data, kind="scatter", x="coord.",
indexers={None: rx_bands[:rx_occupied], "coord.": k_coord[::rx_scatter_skip]},
plot_opts={"marker": "circle", "size": rx_scatter_size})
overlay *= plotter.plot(data, x="coord.",
indexers={None: rx_bands[rx_occupied:]},
plot_opts={"line_dash": "solid", "color": "black"})
overlay *= plotter.plot(data, kind="scatter", x="coord.",
indexers={None: rx_bands[rx_occupied:], "coord.": k_coord[::rx_scatter_skip]},
plot_opts={"marker": "circle", "fill_color": "none", "line_color": "black", "size": rx_scatter_size}) Here are examples when I do multiply the marke And if I disable my setup, and do things more vanilla and disabling the hard-coded |
Extracting the comments from: #1380 (comment) (relates to
MATPLOTLIB_TRANSFORMS
andhvplot.extension(compatibility)
)The text was updated successfully, but these errors were encountered: