Hi, I know there is an ongoing issue in https://github.com/plotly/plotly_express/issues/42, but is there any way to modify individual subplots of plotly.graph_objects.splom? I’m trying to set diagonal to density charts. I tried building such a matrix from subplots, but I can’t make subplots to be linked on selection (selecting some points one one subplot doesn’t change selection on the other) like in graph_objects.splom.
My custom SPLOM looks like this:
fig = make_subplots(rows=4, cols=4)
features = ('a', 'b', 'c', 'd')
for i, colx in enumerate(features):
for j, coly in enumerate(features):
if i == j: # diagonal as a density curve
fig.add_trace(go.Scatter(x=x, y=y, fill='tozerox'), row=i+1, col=j+1)
else: # non-diagonal subplots
fig.add_trace(go.Scatter(x=df[colx], y=df[coly], mode='markers'), row=i+1, col=j+1)
fig.update_xaxes(title_text=colx, row=j+1, col=i+1)
fig.update_yaxes(title_text=coly, row=j+1, col=i+1)
Is there any way to make selections interactive between subplots?
Thanks for any help!