File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -365,27 +365,27 @@ fig.add_trace(
365365 go.Scatter(x = list (df.Date),
366366 y = list (df.High),
367367 name = " High" ,
368- line = dict (color = " #33CFA5 " )))
368+ line = dict (color = " DarkBlue " )))
369369
370370fig.add_trace(
371371 go.Scatter(x = list (df.Date),
372372 y = [df.High.mean()] * len (df.index),
373373 name = " High Average" ,
374374 visible = False ,
375- line = dict (color = " #33CFA5 " , dash = " dash" )))
375+ line = dict (color = " DarkBlue " , dash = " dash" )))
376376
377377fig.add_trace(
378378 go.Scatter(x = list (df.Date),
379379 y = list (df.Low),
380380 name = " Low" ,
381- line = dict (color = " #F06A6A " )))
381+ line = dict (color = " Crimson " )))
382382
383383fig.add_trace(
384384 go.Scatter(x = list (df.Date),
385385 y = [df.Low.mean()] * len (df.index),
386386 name = " Low Average" ,
387387 visible = False ,
388- line = dict (color = " #F06A6A " , dash = " dash" )))
388+ line = dict (color = " Crimson " , dash = " dash" )))
389389
390390# Add Annotations and Buttons
391391high_annotations = [dict (x = " 2016-03-01" ,
You can’t perform that action at this time.
0 commit comments