When setting a figure's specs to have 'secondary_y'=True, it automatically adds a placeholder for an axis on the right of the figure. Is there any way to make it go away or change the to span of the subplot?
In the following example see the differences in the right margin of the plot.
For an easy reproduction:
import plotly.graph_objects as go
from plotly.subplots import make_subplots
make_subplots(specs=[[{'secondary_y': True}]]).add_trace(go.Scatter(
x=[1, 2, 3],
y=[4, 5, 6],
name="yaxis1 data"
))
Thanks!
