-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimerMode.cs
More file actions
33 lines (30 loc) · 1.06 KB
/
TimerMode.cs
File metadata and controls
33 lines (30 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace SuperPerformanceChart
{
/// <summary>
/// Chart Refresh Mode Timer Control Mode
/// </summary>
public enum TimerMode
{
/// <summary>
/// Chart is refreshed when a value is added
/// </summary>
Disabled,
/// <summary>
/// Chart is refreshed every <c>TimerInterval</c> milliseconds, adding all values
/// in the queue to the chart. If there are no values in the queue, a 0 (zero) is added
/// </summary>
Simple,
/// <summary>
/// Chart is refreshed every <c>TimerInterval</c> milliseconds, adding an average of
/// all values in the queue to the chart. If there are no values in the queue,
/// 0 (zero) is added
/// </summary>
SynchronizedAverage,
/// <summary>
/// Chart is refreshed every <c>TimerInterval</c> milliseconds, adding the sum of
/// all values in the queue to the chart. If there are no values in the queue,
/// 0 (zero) is added
/// </summary>
SynchronizedSum
}
}