Skip to content

Commit

Permalink
Adding an item to FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
andrefarzat committed Dec 30, 2019
1 parent 0eba014 commit c917292
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,8 @@ export class AppPlotlyComponent {
## The graph is too slow when interacting, what could I do ?

Angular checks all the data everytime to see if there is a change to be applied, sometimes this brings unexpected slowness when treating a large data to be displayed. To avoid this check, set the property `updateOnlyWithRevision` to `true`. When you need the component to update, you can use the `revision` property (a number) to force it to update. Simply incrementing it (e.g.: `this.revision += 1`) will force the component to be updated.


## How to support Angular 7.x ?

There was a breaking change from `Angular 7.x` to `8.x`. Please see this thread: https://github.com/plotly/angular-plotly.js/issues/79
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@

---

Supports Angular 8.x and up. If you want to use with Angular 7.x, please read the FAQ.


## Content

* [Installation](#installation)
Expand Down

0 comments on commit c917292

Please sign in to comment.