JavaScript/jQuery PieChart - animation
Specifies animation properties.
The UI component animates its elements at the beginning of its lifetime and when the data source changes.
jQuery
index.js
$(function() {
    $("#pieChartContainer").dxPieChart({
        // ...
        animation: {
            easing: "linear",
            duration: 500,
            maxPointCountSupported: 100
        }
    });
});Angular
app.component.html
app.component.ts
app.module.ts
<dx-pie-chart ... >
    <dxo-animation
        easing="linear"
        [duration]="500"
        [maxPointCountSupported]="100">
    </dxo-animation>
</dx-pie-chart>
import { Component } from '@angular/core';
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.css']
})
export class AppComponent {
    // ...
}
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { DxPieChartModule } from 'devextreme-angular';
@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        DxPieChartModule
    ],
    providers: [ ],
    bootstrap: [AppComponent]
})
export class AppModule { }Vue
App.vue
<template>
    <DxPieChart ... >
        <DxAnimation
            easing="linear"
            :duration="500"
            :max-point-count-supported="100"
        />
    </DxPieChart>
</template>
<script>
import 'devextreme/dist/css/dx.light.css';
import DxPieChart, {
    DxAnimation
} from 'devextreme-vue/pie-chart';
export default {
    components: {
        DxPieChart,
        DxAnimation
    },
    // ...
}
</script>React
App.js
import React from 'react';
import 'devextreme/dist/css/dx.light.css';
import PieChart, {
    Animation 
} from 'devextreme-react/pie-chart';
class App extends React.Component {
    render() {
        return (
            <PieChart ... >
                <Animation
                    easing="linear"
                    duration={500}
                    maxPointCountSupported={100}
                />
            </PieChart>
        );
    }
}
export default App;easing
Specifies the easing function of the animation.
Easing functions specify how the speed of the animation changes over time. The following easing functions are available.
- easeOutCubic
The animation starts fast and slows down gradually towards the end. - linear
The animation progresses at a constant pace. 
maxPointCountSupported
Specifies how many series points the UI component should have before the animation will be disabled.
                        Type:
                    
                
                    Default Value: 300
                
        If the number of series points in your chart increases over time, animating them may affect UI component performance. In this case, use the maxPointCountSupported property to specify a limit for the number of points. When this limit is exceeded, the animation will be disabled.
Feedback