Skip to content

Commit

Permalink
:celebration:
Browse files Browse the repository at this point in the history
  • Loading branch information
ajakaiye33 committed Aug 21, 2024
1 parent 0a07288 commit 81b97b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stock_viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def wrd_viz(stringy):
""",
unsafe_allow_html=True
)
fig = px.treemap(
fjg = px.treemap(
data,
path=["Sector", "Symbol"],
values="Volume",
Expand All @@ -168,8 +168,8 @@ def wrd_viz(stringy):
color_continuous_scale=[(0, "red"), (1, "green")],
#title="Current Temperature of The Market",
)
fig.update_layout(margin=dict(t=50, l=25, r=25, b=25),showlegend=False)
st.plotly_chart(fig, use_container_width=True)
fjg.update_layout(margin=dict(t=50, l=25, r=25, b=25),showlegend=False)
st.plotly_chart(fjg, use_container_width=True)

with wod_cld_cont:
with st.container():
Expand Down

0 comments on commit 81b97b2

Please sign in to comment.