Skip to content

Commit d0716b6

Browse files
committed
Remove white outline around bars
1 parent 8481413 commit d0716b6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

switch_model/tools/graph/main.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -773,6 +773,8 @@ def __init__(self, scenarios: List[Scenario], graph_dir: str, skip_long: bool):
773773

774774
# Set the style to Seaborn default style
775775
sns.set()
776+
# Don't show white outline around shapes to avoid confusion
777+
plt.rcParams["patch.edgecolor"] = 'none'
776778

777779
# Disables pandas warnings that will occur since we are constantly returning only a slice of our master dataframe
778780
pd.options.mode.chained_assignment = None

0 commit comments

Comments
 (0)