diff --git a/src/AntDesign.Charts/Components/Configs/ILegend.cs b/src/AntDesign.Charts/Components/Configs/ILegend.cs index cef73a1..8fb2979 100644 --- a/src/AntDesign.Charts/Components/Configs/ILegend.cs +++ b/src/AntDesign.Charts/Components/Configs/ILegend.cs @@ -31,11 +31,11 @@ namespace AntDesign.Charts public LegendMarker Marker { get; set; } [JsonPropertyName("text")] public LegendText Text { get; set; } + [JsonPropertyName("selected")] + public Dictionary Selected { get; set; } [JsonPropertyName("custom")] public bool Custom { get; set; } - - } public class LegendTitle @@ -83,11 +83,11 @@ namespace AntDesign.Charts public LegendMarker Marker { get; set; } [JsonPropertyName("text")] public LegendText Text { get; set; } + [JsonPropertyName("selected")] + public Dictionary Selected { get; set; } [JsonPropertyName("custom")] public bool Custom { get; set; } - - } }