TimeSchedulerGraph
Namespace: TagBites.WinSchedulers
Assembly: TagBites.WinSchedulers.dll
Product: TagBites.WinSchedulers v. 1.3.8
Represents a graph for TimeScheduler control.
public class TimeSchedulerGraphInheritance: object → TimeSchedulerGraph
Constructors
Section titled “Constructors”TimeSchedulerGraph(TimeSchedulerGraphType)
Section titled “TimeSchedulerGraph(TimeSchedulerGraphType)”Initializes a new instance of the TimeSchedulerGraph class with specified the type of graph.
public TimeSchedulerGraph(TimeSchedulerGraphType type)Parameters
Section titled “Parameters”typeTimeSchedulerGraphType
The type of a graph.
TimeSchedulerGraph(TimeSchedulerGraphType, Color)
Section titled “TimeSchedulerGraph(TimeSchedulerGraphType, Color)”Initializes a new instance of the TimeSchedulerGraph class with specified type and color of graph.
public TimeSchedulerGraph(TimeSchedulerGraphType type, Color color)Parameters
Section titled “Parameters”typeTimeSchedulerGraphType
The type of a graph.colorColor
A Color representing color of a the a graph.
TimeSchedulerGraph(TimeSchedulerGraphType, Color, double, double)
Section titled “TimeSchedulerGraph(TimeSchedulerGraphType, Color, double, double)”Initializes a new instance of the TimeSchedulerGraph class with specified type, color of graph and its scale range.
public TimeSchedulerGraph(TimeSchedulerGraphType type, Color color, double scaleMinValue, double scaleMaxValue)Parameters
Section titled “Parameters”typeTimeSchedulerGraphType
The type of a graph.colorColor
A Color representing color of a the a graph.scaleMinValuedouble
The minimum value of the graph.scaleMaxValuedouble
The maximum value of the graph.
Properties
Section titled “Properties”public Color Color { get; }Property Value
Section titled “Property Value”ScaleMaxValue
Section titled “ScaleMaxValue”Gets the maximum value of the graph scale.
public double? ScaleMaxValue { get; }Property Value
Section titled “Property Value”A nullable double that indicates the maximum value of the graph scale.
ScaleMinValue
Section titled “ScaleMinValue”Gets the minimum value of the graph scale.
public double? ScaleMinValue { get; }Property Value
Section titled “Property Value”A nullable double that indicates the minimum value of the graph scale.
Gets the type of this graph.
public TimeSchedulerGraphType Type { get; }Property Value
Section titled “Property Value”A TimeSchedulerGraphType that indicates the type of this graph.
Methods
Section titled “Methods”AddPoint(DateTime, double)
Section titled “AddPoint(DateTime, double)”Adds point to graph.
public void AddPoint(DateTime dateTime, double value)