Added 'selected' option to Legend (#47)

* Added 'selected' option to Legend

* Grouping properties
This commit is contained in:
Maksim 2021-05-06 09:11:41 +03:00 коммит произвёл GitHub
Родитель 3b783eed89
Коммит 05d030b5e5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -31,11 +31,11 @@ namespace AntDesign.Charts
public LegendMarker Marker { get; set; }
[JsonPropertyName("text")]
public LegendText Text { get; set; }
[JsonPropertyName("selected")]
public Dictionary<string, bool> 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<string, bool> Selected { get; set; }
[JsonPropertyName("custom")]
public bool Custom { get; set; }
}
}