Skip to content

Commit c53c8a6

Browse files
authored
fix: temporary disable animation (#164)
Disable animations for all charts until we fix #89 and #41 and until we found a right strategy for animate everything nicely and at 60fps. fix #161
1 parent 56d67aa commit c53c8a6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/state/chart_state.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -873,6 +873,9 @@ export class ChartStore {
873873
this.annotationDimensions.replace(updatedAnnotationDimensions);
874874

875875
this.canDataBeAnimated = isChartAnimatable(seriesGeometries.geometriesCounts, this.animateData);
876+
// temporary disabled until
877+
// https://github.com/elastic/elastic-charts/issues/89 and https://github.com/elastic/elastic-charts/issues/41
878+
this.canDataBeAnimated = false;
876879
this.initialized.set(true);
877880
}
878881
}

0 commit comments

Comments
 (0)