]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
changed r to optional in BubbleDataPoint (#11662)
authorwaszkiewiczja <80920123+waszkiewiczja@users.noreply.github.com>
Mon, 12 Feb 2024 13:49:57 +0000 (14:49 +0100)
committerGitHub <noreply@github.com>
Mon, 12 Feb 2024 13:49:57 +0000 (08:49 -0500)
src/types/index.d.ts

index 6e661188a0b19c4b1c689e4f72c65c9c446bf90f..84cf089cad2f3a95f4502aeec0f9f4e4bb5b2780 100644 (file)
@@ -177,7 +177,7 @@ export interface BubbleDataPoint extends Point {
   /**
    * Bubble radius in pixels (not scaled).
    */
-  r: number;
+  r?: number;
 }
 
 export type BubbleController = DatasetController