Is it possible to draw shapes referenced to paper, but with size referenced to axis?
For example, consider this chart:
import plotly.express as px
import pandas as pd
df = px.data.stocks()
fig = px.line(df, x='date', y="GOOG")
fig.add_shape(type="line",
x0=pd.to_datetime("2018-04-01"),
x1=pd.to_datetime("2018-10-01"),
y0=0.9, y1=0.9, yref='y domain')
fig.show()
In the resulting chart the line is always fixed at 90% the height of the paper. Its length is 183 days , but if I zoom horizontally, the line moves. This is clearly because I have passed two specific dates. What I would like to draw instead is a line which starts say at 10% the paper width, and is of length 183 days, so that whenever I zoom i can always see the line starting at (10%, 90%) the paper width and terminating at (10%paperwidth + 183days, 90% paper width).
Setting xref='x domain'
does not help as it would result in a line of varying length (with respect to the x axis).
Is this even possible in plotly? If so, how?