Skip to content

Commit

Permalink
Merge pull request #5 from kelegorm/master
Browse files Browse the repository at this point in the history
Fixed deleteFrames method
  • Loading branch information
andrey-zakharov authored Mar 13, 2017
2 parents 5e42cb0 + 52f8283 commit 5b6af49
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.7.1+1

- Fixed deleteFrames method

## 0.7.1

- Added support for animations
Expand Down
2 changes: 1 addition & 1 deletion lib/plotly.dart
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ class Plot {

/// Deletes frames from plot by [indices].
void deleteFrames(List<int> indices) {
_Plotly.callMethod('addFrames', [_container, new JsObject.jsify(indices)]);
_Plotly.callMethod('deleteFrames', [_container, new JsObject.jsify(indices)]);
}

/// Use redraw to trigger a complete recalculation and redraw of the graph.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: plotly
version: 0.7.1
version: 0.7.1+1
author: Richard Lincoln <[email protected]>
description: Interactive, browser-based charting library
homepage: https://github.com/rwl/plotly
Expand Down

0 comments on commit 5b6af49

Please sign in to comment.