From: Yujin Choi <99077953+choichoijin@users.noreply.github.com> Date: Mon, 30 Jan 2023 23:23:08 +0000 (+0900) Subject: fix: add bgColor type in RadialLinearScaleOptions (#11081) X-Git-Tag: v4.2.1~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1684cf7dbf577d97fe20f6039e895388ed15902c;p=thirdparty%2FChart.js.git 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 --- diff --git a/src/types/index.d.ts b/src/types/index.d.ts index 95358ecdd..da4ab6a13 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;