Skip to content

Commit

Permalink
Fixed bug triggering update to Graph datasource (#3238)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Dec 1, 2018
1 parent 9611946 commit 0d53337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/graphs.py
Expand Up @@ -249,7 +249,7 @@ def _update_datasource(self, source, data):
"""
if isinstance(source, ColumnDataSource):
if self.handles['static_source']:
source.trigger('data')
source.trigger('data', source.data, data)
else:
source.data.update(data)
else:
Expand Down

0 comments on commit 0d53337

Please sign in to comment.