Hi there
in the code segment below I am sending the correct data to the web page. I want to plot IV rel change against date so
2020-03-11 7.695
is connected to
2020-03-12 22.172
with a line
If I hover over the data points they are plotted correctly BUT there is NO LINE? and no indication on the plot area of the existence of a data point EXCEPT when I hover over it??? Please help I am new to all of this.
print( df_rel_chg_iv_close.head(4) )
#date iv_close_abs
# 0 2020-03-11 7.695
# 1 2020-03-12 22.172
# 2 2020-03-13 -8.108
# 3 2020-03-16 26.308
# line_chart = px.line(
line_chart = px.line(
data_frame= df_rel_chg_iv_close,
x = df_rel_chg_iv_close.date,
y = df_rel_chg_iv_close.iv_close_abs ,
color='date',
labels={'symbol':'sym stuff', 'date stuff':'date'},
)
line_chart.update_layout(uirevision='foo')
return ( line_chart )