Skip to content

Commit

Permalink
Replaced usage of deleted stack_area operation (#1515)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored and jlstevens committed Jun 4, 2017
1 parent a213f38 commit e6ded88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/demos/bokeh/area_chart.ipynb
Expand Up @@ -70,7 +70,7 @@
"style = dict(fill_alpha=0.5)\n",
"\n",
"overlay = (python * pypy * jython)(style={'Area': style})\n",
"overlay.relabel(\"Area Chart\") + hv.operation.stack_area(overlay).relabel(\"Stacked Area Chart\")"
"overlay.relabel(\"Area Chart\") + hv.Area.stack(overlay).relabel(\"Stacked Area Chart\")"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion examples/demos/matplotlib/area_chart.ipynb
Expand Up @@ -71,7 +71,7 @@
"style = dict(alpha=0.5)\n",
"\n",
"overlay = (python * pypy * jython)(style={'Area': style})\n",
"overlay.relabel(\"Area Chart\") + hv.operation.stack_area(overlay).relabel(\"Stacked Area Chart\")"
"overlay.relabel(\"Area Chart\") + hv.Area.stack(overlay).relabel(\"Stacked Area Chart\")"
]
}
],
Expand Down

0 comments on commit e6ded88

Please sign in to comment.