Skip to content

Commit c917292

Browse files
committed
Adding an item to FAQ
1 parent 0eba014 commit c917292

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

FAQ.md

+5
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,8 @@ export class AppPlotlyComponent {
3535
## The graph is too slow when interacting, what could I do ?
3636

3737
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.
38+
39+
40+
## How to support Angular 7.x ?
41+
42+
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

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
---
1313

14+
Supports Angular 8.x and up. If you want to use with Angular 7.x, please read the FAQ.
15+
16+
1417
## Content
1518

1619
* [Installation](#installation)

0 commit comments

Comments
 (0)