fix: RegressionLine Serialization (#113) (#114)

This commit is contained in:
Jerry 2023-03-13 16:07:23 +08:00 коммит произвёл GitHub
Родитель 81e673cfc1
Коммит 49a967a6ec
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 4 удалений

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

@ -246,14 +246,15 @@ namespace AntDesign.Charts
public class RegressionLineConfig : IRegressionLineConfig
{
[JsonPropertyName("type")]
[JsonPropertyName("type")]
public string Type { get; set; }
[JsonPropertyName("style")]
[JsonPropertyName("style")]
public IGraphicStyle Style { get; set; }
[JsonPropertyName("algorithm")]
[JsonIgnore]
public OneOf<int[][], object> Algorithm { get; set; }
[JsonPropertyName("algorithm")]
public object AlgorithmMapping => Algorithm.Value;
[JsonPropertyName("top")]
[JsonPropertyName("top")]
public bool? Top { get; set; }
}
}