From a5262b1b72b8f64c6804318ce439b2d920467f81 Mon Sep 17 00:00:00 2001 From: Anshu kushwaha <85677730+anshukushwaha07@users.noreply.github.com> Date: Tue, 16 Sep 2025 22:54:07 +0530 Subject: [PATCH] fix(types): allow null for line chart point values (#12027) (#12120) --- src/types/geometric.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 = { -- 2.47.3