Files
aistudio-wpf-diagram/Others/Live-Charts-master/Core40/PeriodUnits.cs
2023-04-16 20:11:40 +08:00

14 lines
265 B
C#

namespace LiveCharts.Helpers
{
/// <summary>
/// Defines the interval on which earch of the charts bars is based
/// </summary>
public enum PeriodUnits
{
Milliseconds,
Seconds,
Minutes,
Hours,
Days
}
}