Class TimeSeriesVisualizer
- Namespace
- Bonsai.Design.Visualizers
- Assembly
- Bonsai.Design.Visualizers.dll
Provides a type visualizer for multi-dimensional time series data.
public class TimeSeriesVisualizer : TimeSeriesVisualizerBase
- Inheritance
-
TimeSeriesVisualizer
- Derived
- Inherited Members
Constructors
TimeSeriesVisualizer()
Initializes a new instance of the TimeSeriesVisualizer class.
public TimeSeriesVisualizer()
TimeSeriesVisualizer(int)
Initializes a new instance of the TimeSeriesVisualizer class using the specified number of dimensions.
public TimeSeriesVisualizer(int numSeries)
Parameters
numSeries
intThe number of dimensions in the time series graph. Each dimension will be plotted on its own visual trace.
Properties
AutoScale
Gets or sets a value indicating whether the y-axis range should be recalculated automatically as the graph updates.
public bool AutoScale { get; set; }
Property Value
Capacity
Gets or sets the maximum number of time points displayed at any one moment in the graph.
public int Capacity { get; set; }
Property Value
Max
Gets or sets the upper limit of the y-axis range when using a fixed scale.
public double Max { get; set; }
Property Value
Min
Gets or sets the lower limit of the y-axis range when using a fixed scale.
public double Min { get; set; }
Property Value
Methods
Show(object)
Updates the type visualizer to display the specified value object.
public override void Show(object value)
Parameters
value
objectThe value to visualize.