Skip to content

Commit 09c99d3

Browse files
authored
Merge pull request #5201 from rl-utility-man/patch-15
switched from hex codes to CSS colors
2 parents a5c3a86 + 4de7357 commit 09c99d3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/python/dropdowns.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

370370
fig.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

377377
fig.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

383383
fig.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
391391
high_annotations = [dict(x="2016-03-01",

0 commit comments

Comments
 (0)