]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Add `beforeDraw` to drawtime type (#11358)
authorJacco van den Berg <jaccoberg2281@gmail.com>
Tue, 20 Jun 2023 16:16:50 +0000 (18:16 +0200)
committerGitHub <noreply@github.com>
Tue, 20 Jun 2023 16:16:50 +0000 (18:16 +0200)
src/types/index.d.ts

index a3ef7bbd81c4e01d784c7c56deb553555761dfee..9ce9c5e842fd10bf47cd7df02daa790a19375b13 100644 (file)
@@ -2196,7 +2196,7 @@ export type DecimationOptions = LttbDecimationOptions | MinMaxDecimationOptions;
 
 export declare const Filler: Plugin;
 export interface FillerOptions {
-  drawTime: 'beforeDatasetDraw' | 'beforeDatasetsDraw';
+  drawTime: 'beforeDraw' | 'beforeDatasetDraw' | 'beforeDatasetsDraw';
   propagate: boolean;
 }