*/
spacing: number;
- animation: DoughnutAnimationOptions;
+ animation: false | DoughnutAnimationOptions;
}
export type DoughnutDataPoint = number;
*/
startAngle: number;
- animation: PolarAreaAnimationOptions;
+ animation: false | PolarAreaAnimationOptions;
}
export interface PolarAreaController extends DoughnutController {
}
},
});
+
+
+const pie = new Chart('id', {
+ type: 'pie',
+ data: {
+ labels: [],
+ datasets: [{
+ data: []
+ }]
+ },
+ options: {
+ animation: false,
+ }
+});
+
+
+const polarArea = new Chart('id', {
+ type: 'polarArea',
+ data: {
+ labels: [],
+ datasets: [{
+ data: []
+ }]
+ },
+ options: {
+ animation: false,
+ }
+});