update grafico come stepped line

This commit is contained in:
Samuele E. Locatelli
2021-05-22 17:27:58 +02:00
parent a961542d40
commit 9880ef3d75
3 changed files with 33 additions and 9 deletions
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MP.Stats.Data
{
public class ChartTS
{
#region Public Properties
public DateTime TLabel { get; set; } = DateTime.Now;
public double Value { get; set; } = 0;
#endregion Public Properties
}
}