diff --git a/ui/src/widgets/ui-chart/UIChart.vue b/ui/src/widgets/ui-chart/UIChart.vue index b754b68e..99a9c437 100644 --- a/ui/src/widgets/ui-chart/UIChart.vue +++ b/ui/src/widgets/ui-chart/UIChart.vue @@ -222,6 +222,7 @@ export default { } }, color: this.props.colors, + animation: false, series: [] } return options @@ -254,6 +255,7 @@ export default { } }, color: this.props.colors, + animation: false, xAxis: { type: chartJStoECharts.axisType(this.xAxisType), name: this.props.xAxisLabel, @@ -293,9 +295,7 @@ export default { } } }, - series: [], - animationDuration: 300, // minimal animation on inital data load - animationDurationUpdate: 0 // minimal animation on data update + series: [] } // if an area chart, set the fill to true @@ -568,8 +568,6 @@ export default { radius: this.chartType === 'doughnut' ? ['40%', '100%'] : '100%', data: [], top: this.hasTitle ? 40 : 0, // account for the title - animationDuration: 300, // minimal animation on inital data load - animationDurationUpdate: 0, // minimal animation on data update itemStyle: { borderWidth: 2, borderColor: '#fff'