Добавьте файлы проекта.
This commit is contained in:
12
SQLVision.Core/Models/ChartSeries.cs
Normal file
12
SQLVision.Core/Models/ChartSeries.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SQLVision.Core.Models;
|
||||
|
||||
public class ChartSeries
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public List<object> Values { get; set; } = new();
|
||||
public string Color { get; set; }
|
||||
public double LineSmoothness { get; set; } = 0;
|
||||
public bool ShowPoints { get; set; } = true;
|
||||
}
|
||||
Reference in New Issue
Block a user