Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Implements

Index

Constructors

constructor

Properties

Readonly closefield

closefield: EDataSeriesField = EDataSeriesField.Close

Readonly dataChanged

dataChanged: EventHandler<IDataChangeArgs> = new EventHandler<IDataChangeArgs>()

An EventHandler which is raised when the data changes.

remarks

To subscribe to dataChanged, use the following code:

const dataSeries = new XyDataSeries(wasmContext);
const callback = () => {
   // Data has changed
};
dataSeries.dataChanged.subscribe(callback);

To unsubscribe from dataChanged, use the following code:

const dataSeries = new XyDataSeries(wasmContext);
dataSeries.dataChanged.unsubscribe(callback);

Readonly dataDistributionCalculator

dataDistributionCalculator: IDataDistributionCalculator = new DataDistributionCalculator()

Gets the IDataDistributionCalculator instance for this DataSeries. Used when resampling data to determine the correct algorithm

dataIds

dataIds: Record<number | string, number[]>

If set, these will be included in the serialised definition, so that it can be used with sharedData

hFinalAnimationValues

hFinalAnimationValues: SCRTDoubleVector

H vector with final animation values

hInitialAnimationValues

hInitialAnimationValues: SCRTDoubleVector

H vector with initial animation values

Protected highValues

highValues: SCRTDoubleVector

Readonly highfield

highfield: EDataSeriesField = EDataSeriesField.High

Readonly id

id: string

A unique Id for the IDataSeries

Protected indexes

indexes: SCRTDoubleVector

Protected isDeleted

isDeleted: boolean

lFinalAnimationValues

lFinalAnimationValues: SCRTDoubleVector

Y1 vector with final animation values

lInitialAnimationValues

lInitialAnimationValues: SCRTDoubleVector

Y1 vector with initial animation values

Protected lowValues

lowValues: SCRTDoubleVector

Readonly lowfield

lowfield: EDataSeriesField = EDataSeriesField.Low

minXSpacing

minXSpacing: number = 0

Readonly originalSeries

originalSeries: BaseDataSeries

Readonly type

type: Hlc = EDataSeriesType.Hlc

Gets the EDataSeriesType type of the DataSeries

Readonly webAssemblyContext

webAssemblyContext: TSciChart

The SciChart WebAssembly Context containing native methods and access to our WebGL2 Engine

xFinalAnimationValues

xFinalAnimationValues: SCRTDoubleVector

X vector with final animation values

xInitialAnimationValues

xInitialAnimationValues: SCRTDoubleVector

X vector with initial animation values

Protected xValues

xValues: SCRTDoubleVector

yFinalAnimationValues

yFinalAnimationValues: SCRTDoubleVector

Y vector with final animation values

yInitialAnimationValues

yInitialAnimationValues: SCRTDoubleVector

Y vector with initial animation values

Protected yValues

yValues: SCRTDoubleVector

Accessors

changeCount

  • get changeCount(): number
  • Gets the change count for this data series. Allows to indentify when data series was changed

    inheritdoc

    Returns number

containsNaN

  • get containsNaN(): boolean
  • set containsNaN(containsNaN: boolean): void
  • Gets or sets whether the Y data contains NaN values. Set containsNaN = false for the performance optimization when the series has no NaNs

    inheritdoc

    Returns boolean

  • Gets or sets whether the Y data contains NaN values. Set containsNaN = false for the performance optimization when the series has no NaNs

    inheritdoc

    Parameters

    • containsNaN: boolean

    Returns void

dataSeriesName

  • get dataSeriesName(): string
  • set dataSeriesName(dataSeriesName: string): void
  • Gets the DataSeries name. This is used in legend controls and tooltips to identify the series

    inheritdoc

    Returns string

  • Gets the DataSeries name. This is used in legend controls and tooltips to identify the series

    inheritdoc

    Parameters

    • dataSeriesName: string

    Returns void

hasMetadata

  • get hasMetadata(): boolean
  • Check if the series has an existing metadata

    Returns boolean

hasValues

  • get hasValues(): boolean
  • When true, the DataSeries has values, else it is empty

    inheritdoc

    Returns boolean

isEvenlySpaced

  • get isEvenlySpaced(): boolean
  • set isEvenlySpaced(isSorted: boolean): void

isSorted

  • get isSorted(): boolean
  • set isSorted(isSorted: boolean): void
  • Gets or sets whether the X-values are sorted ascending or not. See remarks at IDataSeries.isSorted for further information

    inheritdoc

    Returns boolean

  • Gets or sets whether the X-values are sorted ascending or not. See remarks at IDataSeries.isSorted for further information

    inheritdoc

    Parameters

    • isSorted: boolean

    Returns void

xRange

  • Gets the range in the X-direction for this DataSeries

    inheritdoc

    Returns NumberRange

Methods

append

  • append(x: number, y: number, h: number, l: number, metadata?: IPointMetadata): void
  • Appends a single X, Y, Y1 point to the DataSeries

    remarks

    For best performance on drawing large datasets, use the appendRange method

    Any changes of the DataSeries will trigger a redraw on the parent SciChartSurface

    Parameters

    • x: number

      The X-value

    • y: number

      The Y1-value

    • h: number

      The H-value

    • l: number

      The L-value

    • Optional metadata: IPointMetadata

      The point metadata

    Returns void

Protected appendMetadata

Protected appendMetadataRange

  • appendMetadataRange(metadata: IPointMetadata[], length: number): void

appendRange

clear

  • clear(): void
  • Clears the entire DataSeries.

    remarks

    Note this does not free memory, WebAssembly/Native memory is released by calling delete, after which the DataSeries is no longer usable.

    Any changes of the DataSeries will trigger a redraw on the parent SciChartSurface

    Returns void

count

  • count(): number
  • Gets the count of data-points in the DataSeries

    Returns number

delete

  • delete(): void
  • Deletes native (WebAssembly) memory used by this type, after which it cannot be used.

    remarks

    Call .delete() before finishing with the object to ensure that WebAssmembly memory leaks do not occur.

    All elements within SciChart's High Performance Realtime JavaScript Charts which implement IDeletable must be deleted manually to free native (WebAssembly) memory

    Returns void

Protected Abstract filterAll

  • filterAll(): void
  • Returns void

Protected filterOnAppend

  • filterOnAppend(count: number): void
  • Parameters

    • count: number

    Returns void

Protected filterOnInsert

  • filterOnInsert(startIndex: number, count: number): void
  • Parameters

    • startIndex: number
    • count: number

    Returns void

Protected filterOnRemove

  • filterOnRemove(startIndex: number, count: number): void
  • Parameters

    • startIndex: number
    • count: number

    Returns void

Protected filterOnUpdate

  • filterOnUpdate(index: number): void
  • Parameters

    • index: number

    Returns void

getIndicesRange

  • Gets the integer indices of the XValues array that are currently in the VisibleRange passed in, and an undefined range otherwise.

    Parameters

    • xRange: NumberRange

      The VisibleRange to get the indices range

    • Default value isCategoryData: boolean = false

      If True the renderable series uses CategoryAxis

    • Default value downSearchMode: ESearchMode = ESearchMode.RoundDown

      Specifies the search mode used to look for the index of visibleRange.Min

    • Default value upSearchMode: ESearchMode = ESearchMode.RoundUp

      Specifies the search mode used to look for the index of visibleRange.Max

    Returns NumberRange

    numberRange The indices to the X-Data that are currently in range.

getIsDeleted

  • getIsDeleted(): boolean

getMetadataAt

getMetadataLength

  • getMetadataLength(): number

getNativeHighValues

  • getNativeHighValues(): SCRTDoubleVector
  • Gets a native / WebAssembly vector of H-values in the DataSeries

    Returns SCRTDoubleVector

getNativeIndexes

  • getNativeIndexes(): SCRTDoubleVector

getNativeLowValues

  • getNativeLowValues(): SCRTDoubleVector
  • Gets a native / WebAssembly vector of L-values in the DataSeries

    Returns SCRTDoubleVector

getNativeXValues

  • getNativeXValues(): SCRTDoubleVector

getNativeYValues

  • getNativeYValues(): SCRTDoubleVector

getOriginalCount

  • getOriginalCount(): number
  • Returns number

getOriginalHighValues

  • getOriginalHighValues(): SCRTDoubleVector
  • Returns SCRTDoubleVector

getOriginalLowValues

  • getOriginalLowValues(): SCRTDoubleVector
  • Returns SCRTDoubleVector

getOriginalXValues

  • getOriginalXValues(): SCRTDoubleVector
  • Returns SCRTDoubleVector

getOriginalYValues

  • getOriginalYValues(): SCRTDoubleVector
  • Returns SCRTDoubleVector

getWindowedYRange

  • getWindowedYRange(xRange: NumberRange, getPositiveRange: boolean, isXCategoryAxis?: boolean, dataSeriesValueType?: EDataSeriesValueType, isHorizontalDirection?: boolean, hasHighCap?: boolean, hasLowCap?: boolean): NumberRange

getXRange

Protected getXValues

hasMetadataGenerator

  • hasMetadataGenerator(): boolean
  • Check if the series has an existing metadataGenerator

    Returns boolean

insert

  • insert(startIndex: number, x: number, y: number, h: number, l: number, metadata?: IPointMetadata): void
  • Inserts a single X,Y, H, L value at the start index

    remarks

    For best performance on drawing large datasets, use the insertRange method

    Any changes of the DataSeries will trigger a redraw on the parent SciChartSurface

    Parameters

    • startIndex: number

      the index to insert at

    • x: number

      the XValue

    • y: number

      the YValue

    • h: number

      the HighValue

    • l: number

      the LowValue

    • Optional metadata: IPointMetadata

      The point metadata

    Returns void

Protected insertMetadata

Protected insertMetadataRange

  • insertMetadataRange(startIndex: number, metadata: IPointMetadata[]): void

insertRange

  • Inserts a range of X,Y, H, L values at the startIndex

    remarks

    Any changes of the DataSeries will trigger a redraw on the parent SciChartSurface

    Parameters

    Returns void

notifyDataChanged

  • notifyDataChanged(changeType: EDataChangeType, index: number, count: number, name?: string): void

Protected onBaseDataChanged

  • Parameters

    Returns void

Protected onClear

  • onClear(): void
  • Returns void

Protected onOriginalPropertyChanged

  • onOriginalPropertyChanged(name: string): void
  • Parameters

    • name: string

    Returns void

removeAt

  • removeAt(index: number): void
  • Removes a single X,Y, H, L value at the specified index

    remarks

    Any changes of the DataSeries will trigger a redraw on the parent SciChartSurface

    Parameters

    • index: number

      the index to remove at

    Returns void

Protected removeMetadataAt

  • removeMetadataAt(index: number): void

Protected removeMetadataRange

  • removeMetadataRange(startIndex: number, count: number): void

removeRange

  • removeRange(startIndex: number, count: number): void
  • Removes a range of X, Y, H, L values at the specified index

    remarks

    Any changes of the DataSeries will trigger a redraw on the parent SciChartSurface

    Parameters

    • startIndex: number

      the start index to remove at

    • count: number

      the number of points to remove

    Returns void

setFinalAnimationVectors

setInitialAnimationVectors

Protected setMetadata

Protected setMetadataAt

setMetadataGenerator

  • Sets a function that will be used to generate metadata for values when they are appended/inserted, if no explicit metadata is supplied.

    Parameters

    Returns void

toJSON

  • toJSON(excludeData?: boolean): any
  • Convert the object to a definition that can be serialized to JSON, or used directly with the builder api

    Parameters

    • Default value excludeData: boolean = false

      if set true, data values will not be included in the json.

    Returns any

update

  • update(index: number, y: number, h: number, l: number, metadata?: IPointMetadata): void
  • Updates a single Y, H, L-value by X-index

    remarks

    Any changes of the DataSeries will trigger a redraw on the parent SciChartSurface

    Parameters

    • index: number

      the index to update

    • y: number

      The new Y value

    • h: number

      The new H value

    • l: number

      The new L value

    • Optional metadata: IPointMetadata

      The point metadata

    Returns void

updateAnimationProperties

  • updateAnimationProperties(progress: number, animation: SeriesAnimation): void

updateXyhl

  • updateXyhl(index: number, x: number, y: number, h: number, l: number, metadata?: IPointMetadata): void
  • Updates a single X, Y, H, L-value by X-index. Might also need to set isSorted = false

    remarks

    Any changes of the DataSeries will trigger a redraw on the parent SciChartSurface

    Parameters

    • index: number

      the index to update

    • x: number

      The new X value

    • y: number

      The new Y value

    • h: number

      The new H value

    • l: number

      The new L value

    • Optional metadata: IPointMetadata

      The point metadata

    Returns void

validateAnimationVectors

  • validateAnimationVectors(): void

Protected validateIndex

  • validateIndex(index: number, message?: string): void
  • Parameters

    • index: number
    • Optional message: string

    Returns void

Generated using TypeDoc