Skip to content

Commit e1b4e1d

Browse files
committed
Remove white outline around bars
1 parent e395de1 commit e1b4e1d

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
@@ -661,6 +661,8 @@ def __init__(self, scenarios: List[Scenario], graph_dir: str, skip_long: bool):
661661

662662
# Set the style to Seaborn default style
663663
sns.set()
664+
# Don't show white outline around shapes to avoid confusion
665+
plt.rcParams["patch.edgecolor"] = 'none'
664666

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

0 commit comments

Comments
 (0)