]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
fix: add bgColor type in RadialLinearScaleOptions (#11081)
authorYujin Choi <99077953+choichoijin@users.noreply.github.com>
Mon, 30 Jan 2023 23:23:08 +0000 (08:23 +0900)
committerGitHub <noreply@github.com>
Mon, 30 Jan 2023 23:23:08 +0000 (18:23 -0500)
* fix: add bgColor type in RadialLinearScaleOptions

* Update src/types/index.d.ts

remove trailing space

---------

Co-authored-by: Jacco van den Berg <jaccoberg2281@gmail.com>
src/types/index.d.ts

index 95358ecdd0263337f7ebc5e0b456e727b727a170..da4ab6a130cf92a2c8cc3edd8c2871b0a2c38eb3 100644 (file)
@@ -3316,6 +3316,8 @@ export type RadialTickOptions = TickOptions & {
 }
 
 export type RadialLinearScaleOptions = CoreScaleOptions & {
+  backgroundColor: Color;
+
   animate: boolean;
 
   startAngle: number;