Skip to content

Commit 54c8de9

Browse files
committed
Turn off animations
1 parent ce832d2 commit 54c8de9

File tree

1 file changed

+2
-1
lines changed
  • static/app/views/dashboards/widgetCard

1 file changed

+2
-1
lines changed

static/app/views/dashboards/widgetCard/chart.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ function WidgetCardChart(props: WidgetCardChartProps) {
303303
};
304304

305305
const chartOptions = {
306+
animation: false,
306307
notMerge: false,
307308
autoHeightResize: shouldResize ?? true,
308309
useMultilineDate: true,
@@ -662,7 +663,7 @@ function getChartComponent(chartProps: any, widget: Widget): React.ReactNode {
662663

663664
switch (widget.displayType) {
664665
case 'bar':
665-
return <BarChart {...chartProps} stacked={stacked} animation={false} />;
666+
return <BarChart {...chartProps} stacked={stacked} />;
666667
case 'area':
667668
case 'top_n':
668669
return <AreaChart stacked {...chartProps} />;

0 commit comments

Comments
 (0)