@Vadim wrote:
I need to place vertical bullet-chart near scatter plot in subplot figure.
I made figure with several subplots:
fig = go. Figure()
fig.add_subplots(rows=2, columns=2…)
fig.add_trace(go.Scatter(…), row=1, col=1)
fig.add_trace(go.Indicator(gauge={‘shape’: “bullet”}), row=1, col=2)
fig.add_trace(go.Scatter(…), row=2, col=1)
fig.add_trace(go.Indicator(gauge={‘shape’: “bullet”}), row=2, col=2)and i need to orient bullet indicator to verical. By default it is horizontal and i didn’t find answer in docs.
How a can do it?..
Posts: 1
Participants: 1