From caa56ce87dd56c8f11e708e60964f60f10803adc Mon Sep 17 00:00:00 2001 From: waszkiewiczja <80920123+waszkiewiczja@users.noreply.github.com> Date: Mon, 12 Feb 2024 14:49:57 +0100 Subject: [PATCH] changed r to optional in BubbleDataPoint (#11662) --- 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