From b11ca53a77c639c881e9df610fc86d47167dcb47 Mon Sep 17 00:00:00 2001 From: rahul Date: Mon, 4 Nov 2024 09:11:29 +0530 Subject: [PATCH] update goals type --- types/apexcharts.d.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/types/apexcharts.d.ts b/types/apexcharts.d.ts index 452e981ed..6539a8e58 100644 --- a/types/apexcharts.d.ts +++ b/types/apexcharts.d.ts @@ -330,7 +330,15 @@ type ApexAxisChartSeries = { fillColor?: string; strokeColor?: string; meta?: any; - goals?: any; + goals?: { + name?: string, + value: number, + strokeHeight?: number; + strokeWidth?: number; + strokeColor?: string; + strokeDashArray?: number; + strokeLineCap?: 'butt' | 'square' | 'round' + }[]; barHeightOffset?: number; columnWidthOffset?: number; }[]