From: Anshu kushwaha <85677730+anshukushwaha07@users.noreply.github.com> Date: Tue, 16 Sep 2025 17:24:07 +0000 (+0530) Subject: fix(types): allow null for line chart point values (#12027) (#12120) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a5262b1b72b8f64c6804318ce439b2d920467f81;p=thirdparty%2FChart.js.git fix(types): allow null for line chart point values (#12027) (#12120) --- diff --git a/src/types/geometric.d.ts b/src/types/geometric.d.ts index 9df01f164..e48ce1c23 100644 --- a/src/types/geometric.d.ts +++ b/src/types/geometric.d.ts @@ -8,8 +8,8 @@ export interface ChartArea { } export interface Point { - x: number; - y: number; + x: number | null; + y: number | null; } export type TRBL = {