From 6fd4551ac6fa93212ce7a6a17db6fe49748669e0 Mon Sep 17 00:00:00 2001 From: vitalii-chernysh Date: Mon, 4 Aug 2025 14:49:49 +0000 Subject: [PATCH] linestep added to ApexStroke.curve type --- projects/ng-apexcharts/src/lib/model/apex-types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/ng-apexcharts/src/lib/model/apex-types.ts b/projects/ng-apexcharts/src/lib/model/apex-types.ts index ef6eb96..0a5ecc8 100644 --- a/projects/ng-apexcharts/src/lib/model/apex-types.ts +++ b/projects/ng-apexcharts/src/lib/model/apex-types.ts @@ -273,7 +273,8 @@ export interface ApexStroke { | "straight" | "stepline" | "monotoneCubic" - | ("smooth" | "straight" | "stepline" | "monotoneCubic")[]; + | "linestep" + | ("smooth" | "straight" | "stepline" | "monotoneCubic" | "linestep")[]; lineCap?: "butt" | "square" | "round"; colors?: any[]; width?: number | number[];