From b2c4c7cc60a82679537f3ed4751dbf192df7f110 Mon Sep 17 00:00:00 2001 From: Jed Date: Sat, 10 Feb 2024 08:44:44 +0100 Subject: [PATCH] changed r to optional in BubbleDataPoint --- src/types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/index.d.ts b/src/types/index.d.ts index 6e661188a0b..84cf089cad2 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -177,7 +177,7 @@ export interface BubbleDataPoint extends Point { /** * Bubble radius in pixels (not scaled). */ - r: number; + r?: number; } export type BubbleController = DatasetController