From: Jacco van den Berg Date: Tue, 20 Jun 2023 16:16:50 +0000 (+0200) Subject: Add `beforeDraw` to drawtime type (#11358) X-Git-Tag: v4.3.1~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1c2dd6898ee65233ca04ff18a15f89f0ae8e67de;p=thirdparty%2FChart.js.git Add `beforeDraw` to drawtime type (#11358) --- diff --git a/src/types/index.d.ts b/src/types/index.d.ts index a3ef7bbd8..9ce9c5e84 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -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; }