Skip to content

Commit

Permalink
Margins
Browse files Browse the repository at this point in the history
  • Loading branch information
wassimj committed Sep 3, 2022
1 parent df1b96d commit 949e196
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions json-test02.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def plotlyDataByTopology(topology=None, mesh_opacity=0.5, mesh_color="lightgrey"
marker_line_color="black",
marker_line_width=1,
opacity=0.8))
fig.update_layout(title="Window Area", margin=dict(l=2, r=2, t=20, b=2), paper_bgcolor='rgba(0.9,0.9,0.9,1)', polar = dict(
fig.update_layout(title="Window Area", margin=dict(l=10, r=10, t=20, b=2), paper_bgcolor='rgba(0.9,0.9,0.9,1)', polar = dict(
radialaxis = dict(showticklabels=False, ticks='')))
st.plotly_chart(fig, use_container_width=True)

Expand All @@ -532,7 +532,7 @@ def plotlyDataByTopology(topology=None, mesh_opacity=0.5, mesh_color="lightgrey"
marker_line_color="black",
marker_line_width=1,
opacity=0.8))
fig.update_layout(title="Wall Area", margin=dict(l=2, r=2, t=20, b=2), paper_bgcolor='rgba(0.9,0.9,0.9,1)', polar = dict(
fig.update_layout(title="Wall Area", margin=dict(l=10, r=10, t=20, b=2), paper_bgcolor='rgba(0.9,0.9,0.9,1)', polar = dict(
radialaxis = dict(showticklabels=False, ticks='')))
st.plotly_chart(fig, use_container_width=True)

Expand All @@ -552,7 +552,7 @@ def plotlyDataByTopology(topology=None, mesh_opacity=0.5, mesh_color="lightgrey"
marker_line_color="black",
marker_line_width=1,
opacity=0.8))
fig.update_layout(title="WWR By Orientation", margin=dict(l=2, r=2, t=20, b=2), paper_bgcolor='rgba(0.9,0.9,0.9,1)', polar = dict(
fig.update_layout(title="WWR By Orientation", margin=dict(l=10, r=10, t=20, b=2), paper_bgcolor='rgba(0.9,0.9,0.9,1)', polar = dict(
radialaxis = dict(showticklabels=False, ticks='')))

st.plotly_chart(fig, use_container_width=True)
Expand All @@ -573,6 +573,6 @@ def plotlyDataByTopology(topology=None, mesh_opacity=0.5, mesh_color="lightgrey"
marker_line_color="black",
marker_line_width=1,
opacity=0.8))
fig.update_layout(title="WWR By Project", margin=dict(l=2, r=2, t=20, b=2), paper_bgcolor='rgba(0.9,0.9,0.9,1)', polar = dict(
fig.update_layout(title="WWR By Project", margin=dict(l=10, r=10, t=20, b=2), paper_bgcolor='rgba(0.9,0.9,0.9,1)', polar = dict(
radialaxis = dict(showticklabels=False, ticks='')))
st.plotly_chart(fig, use_container_width=True)

0 comments on commit 949e196

Please sign in to comment.