Skip to content

Commit

Permalink
Remove charge suffix from flexibility label
Browse files Browse the repository at this point in the history
  • Loading branch information
simnh committed Feb 28, 2019
1 parent 1c9dc58 commit 5ead696
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/oemof/tabular/tools/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ def hourly_plot(
go.Scatter(
x = x,
y = df[c].clip(upper=0),
name=c+'-charge',
name=c,
stackgroup='negative',
line=dict(width=0, color=color_dict.get(c, 'black')),
showlegend= False
showlegend=False
)
)

Expand Down

0 comments on commit 5ead696

Please sign in to comment.