Spaces:
Sleeping
Sleeping
anaucoin commited on
Commit ·
cc57d1a
1
Parent(s): a6d9944
remove grid lines make logo brighter
Browse files
app.py
CHANGED
|
@@ -545,7 +545,7 @@ def runapp() -> None:
|
|
| 545 |
sizex= .9, #(dfdata['Exit Date'].astype('int64').max() - dfdata['Exit Date'].astype('int64').min()) // 10**9,
|
| 546 |
sizey= .9, #(dfdata['Cumulative P/L'].max() - dfdata['Cumulative P/L'].min()),
|
| 547 |
sizing="contain",
|
| 548 |
-
opacity=0.
|
| 549 |
layer = "below")
|
| 550 |
)
|
| 551 |
|
|
@@ -555,9 +555,11 @@ def runapp() -> None:
|
|
| 555 |
xaxis=dict(
|
| 556 |
title="Exit Date",
|
| 557 |
tickmode='array',
|
|
|
|
| 558 |
),
|
| 559 |
yaxis=dict(
|
| 560 |
-
title="Cumulative P/L"
|
|
|
|
| 561 |
),
|
| 562 |
plot_bgcolor = 'rgba(10, 10, 10, 1)'
|
| 563 |
)
|
|
|
|
| 545 |
sizex= .9, #(dfdata['Exit Date'].astype('int64').max() - dfdata['Exit Date'].astype('int64').min()) // 10**9,
|
| 546 |
sizey= .9, #(dfdata['Cumulative P/L'].max() - dfdata['Cumulative P/L'].min()),
|
| 547 |
sizing="contain",
|
| 548 |
+
opacity=0.5,
|
| 549 |
layer = "below")
|
| 550 |
)
|
| 551 |
|
|
|
|
| 555 |
xaxis=dict(
|
| 556 |
title="Exit Date",
|
| 557 |
tickmode='array',
|
| 558 |
+
showgrid=False
|
| 559 |
),
|
| 560 |
yaxis=dict(
|
| 561 |
+
title="Cumulative P/L",
|
| 562 |
+
showgrid=False
|
| 563 |
),
|
| 564 |
plot_bgcolor = 'rgba(10, 10, 10, 1)'
|
| 565 |
)
|