I am using hvplot.render to render a couple of Holoviews scatter
and curve
elements as a Plotly figure, but I can not control the colors or shapes of the Plotly plot.
All I want is the ability to determine the color of the scatter for the moment (i.e. the rendered scatter in the final Plotly Figure to be white and have square glyphs).
I have tried adding .opts
and other such methods but nothing seems to work for me.
Any ideas ?
Figure(
hvplot.render(
(scatter * curve * curve_2).opts(
width=800,
tools=["hover"],
title=new_title,
xlabel=None,
),
backend="plotly",
)
).update_layout(
title=new_title,
hovermode="x",
template="plotly_dark",
autosize=True,
width=None,
height=None,
showlegend=True,
legend=dict(yanchor="top", y=0.99, xanchor="left", x=0.01),
)