Skip to content
Auto
Products

TimeSchedulerGraph

Namespace: TagBites.WinSchedulers
Assembly: TagBites.WinSchedulers.dll
Product: TagBites.WinSchedulers v. 1.3.8

Represents a graph for TimeScheduler control.

public class TimeSchedulerGraph

Inheritance: object → TimeSchedulerGraph

TimeSchedulerGraph(TimeSchedulerGraphType)

Section titled “TimeSchedulerGraph(TimeSchedulerGraphType)”

Initializes a new instance of the TimeSchedulerGraph class with specified the type of graph.

public TimeSchedulerGraph(TimeSchedulerGraphType type)

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)

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)
public Color Color { get; }

Color

Gets the maximum value of the graph scale.

public double? ScaleMaxValue { get; }

double?

A nullable double that indicates the maximum value of the graph scale.

Gets the minimum value of the graph scale.

public double? ScaleMinValue { get; }

double?

A nullable double that indicates the minimum value of the graph scale.

Gets the type of this graph.

public TimeSchedulerGraphType Type { get; }

TimeSchedulerGraphType

A TimeSchedulerGraphType that indicates the type of this graph.

Adds point to graph.

public void AddPoint(DateTime dateTime, double value)
  • dateTime DateTime
    The date time the point will be created.
  • value double
    The value which the point will have.