mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-04 16:16:34 +08:00
14 lines
265 B
C#
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
|
||
|
|
}
|
||
|
|
}
|