/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
OpenFlash/Charts/linebase.cs
26 строк
547 B
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
using System; using OpenFlashChartLib.Json; namespace OpenFlashChartLib.Charts { public class LineBase : Chart<BarValue> { public LineBase() { ChartType = "line_dot"; Width = 1; } [JsonProperty("width")] public int Width { set; get; } [JsonProperty("dot-size")] public int DotSize { get; set; } [JsonProperty("halo-size")] public int HaloSize { get; set; } [JsonProperty("tip")] public string ToolTip { get; set; } } }