From 1684cf7dbf577d97fe20f6039e895388ed15902c Mon Sep 17 00:00:00 2001 From: Yujin Choi <99077953+choichoijin@users.noreply.github.com> Date: Tue, 31 Jan 2023 08:23:08 +0900 Subject: [PATCH] fix: add bgColor type in RadialLinearScaleOptions (#11081) * fix: add bgColor type in RadialLinearScaleOptions * Update src/types/index.d.ts remove trailing space --------- Co-authored-by: Jacco van den Berg --- src/types/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/index.d.ts b/src/types/index.d.ts index 95358ecdd02..da4ab6a130c 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -3316,6 +3316,8 @@ export type RadialTickOptions = TickOptions & { } export type RadialLinearScaleOptions = CoreScaleOptions & { + backgroundColor: Color; + animate: boolean; startAngle: number;