From 0ab19242b518c2a592e309badb75d717e63d635b Mon Sep 17 00:00:00 2001 From: quirynen <81248819+quirynen@users.noreply.github.com> Date: Tue, 9 Nov 2021 06:24:11 +0100 Subject: [PATCH] Feature: Add IsStack property (#61) * Adding IsStack * Add IsStack as Json Property for line Config --- src/AntDesign.Charts/Components/Plots/Line/LineConfig.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/AntDesign.Charts/Components/Plots/Line/LineConfig.cs b/src/AntDesign.Charts/Components/Plots/Line/LineConfig.cs index 9f055e4..1f2a593 100644 --- a/src/AntDesign.Charts/Components/Plots/Line/LineConfig.cs +++ b/src/AntDesign.Charts/Components/Plots/Line/LineConfig.cs @@ -103,6 +103,8 @@ namespace AntDesign.Charts public static string StepTypeVH = "vh"; public static string StepTypeVHV = "vhv"; public static string StepTypeHVH = "hvh"; + [JsonPropertyName("isStack")] + public bool? IsStack { get; set; } } public interface ILineViewConfig : IViewConfig