[This is preliminary documentation and is subject to change.]
The TimeSeries type exposes the following members.Constructors
| Name | Description | |
|---|---|---|
| TimeSeries | Initializes a new instance of the TimeSeries class |
Methods
| Name | Description | |
|---|---|---|
| Add |
Adds sample to the series at the appropriate position.
This method respects MaxSamples and first deletes older samples making room for new additions
| |
| BuildViews |
Returns how many samples fit
| |
| Clear | ||
| Delete |
Deletes sample from the set. This method is not efficient as it does linear list scan
| |
| Destructor | (Overrides DisposableObject Destructor .) | |
| Dispose |
Deterministically disposes object. DO NOT OVERRIDE this method, override Destructor() instead
(Inherited from DisposableObject.) | |
| EnsureObjectNotDisposed |
Checks to see whether object dispose started or has already been disposed and throws an exception if Dispose() was called
(Inherited from DisposableObject.) | |
Determines whether the specified object is equal to the current object. (Inherited from | ||
| Finalize | (Inherited from DisposableObject.) | |
Serves as the default hash function. (Inherited from | ||
| GetMaxSampleWidth |
Returns the maximum width of one sample extracted from all views
| |
| GetPaneNames |
Gets a list of distinct pane names ordered by occurence in this and all child series if includeChildren is true
| |
Gets the (Inherited from | ||
| LastXSamplesData |
Returns last X data samples in the series in natural order. It may return less samples than X
| |
Creates a shallow copy of the current (Inherited from | ||
| ReplaceLast |
Replace last data sample.
This function requires that the new sample has the same timestamp
as the last sample in the time series data.
| |
| ReplaceSamples | ||
Returns a string that represents the current object. (Inherited from |
Extension Methods
Fields
| Name | Description | |
|---|---|---|
| MAX_SAMPLES_DEFAULT | ||
| MAX_SAMPLES_MIN |
Properties
| Name | Description | |
|---|---|---|
| Children |
Returns the children of this series
| |
| Data |
Returns data in the series in natural time order
| |
| DataReveresed |
Returns data in the series in the reveresed time order
| |
| Disposed |
Indicates whether this object was already disposed - the Dispose() has finished
(Inherited from DisposableObject.) | |
| DisposeStarted |
Indicates whether this object Dispose() has been called and dispose started but not finished yet
(Inherited from DisposableObject.) | |
| MaxSamples | ||
| Name |
Series name
| |
| Order |
Series order in the list of orders
| |
| Parent |
Returns parent of this series or null
| |
| SampleCount |
Sample count in this series, excluding children
| |
| Views |
Views that visualize the series data (may be more than one),
for example a market data may have 3 views that show open.close and volume as 3 views based on the same source
| |
| Visible |
Shows/hides all views
| |
| YLevels |
Returns the registry of horizontal levels on Y access
|
See Also