Skip to content

Commit 38c9521

Browse files
committed
Merge branch 'master' into feature/add-bar
2 parents 811326e + f3989a3 commit 38c9521

File tree

4 files changed

+2659
-2267
lines changed

4 files changed

+2659
-2267
lines changed

.circleci/config.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ jobs:
99

1010
steps:
1111
- checkout
12-
- run:
13-
name: install yarn
14-
command: 'sudo npm install -g yarn --quiet'
1512
- restore_cache:
1613
key: dependency-cache-{{ checksum "yarn.lock" }}
1714
- run:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,4 @@ env GITHUB_TOKEN=your_token yarn release-it patch
103103

104104
- sizeref helper. I think this depends on the data. likely need to find the range and pick a good value? From react?
105105
- nice to have: https://plot.ly/javascript/parallel-coordinates-plot/
106+

src/module.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,9 @@ class PlotlyPanelCtrl extends MetricsPanelCtrl {
578578
});
579579
this.initialized = true;
580580
} else if (this.initialized) {
581-
Plotly.redraw(this.graphDiv);
581+
Plotly.redraw(this.graphDiv).then(() => {
582+
this.renderingCompleted();
583+
});
582584
} else {
583585
console.log('Not initialized yet!');
584586
}

0 commit comments

Comments
 (0)