Class OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

Type of OHLCSeries that automatically packages progressive (X) Vec2 data.

Type Parameters

Hierarchy

  • OHLCSeries<PositiveFigure, NegativeFigure>
    • OHLCSeriesWithAutomaticPacking

Implements

Properties

_isCursorEnabled: boolean = true

Active state of Cursor

axisX: Axis
axisY: Axis
scale: LinearScaleXY | MixedScaleXY

Scale of the series

Methods

  • Append a single XY coordinate or list of coordinates into the series.

     // Example syntax
    LineSeries.add({ x: 0, y: 100 })

    LineSeries.add([
    { x: 0, y: 100 },
    { x: 10, y: 50 },
    { x: 20, y: 75 },
    ])

    Returns

    Object itself for fluent interface.

    Parameters

    • points: Point | Point[]

      Single XY coordinate or list of coordinates.

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Each Y-value will be paired with an automatically generated X-value, based on step-argument.

    Returns

    Object itself for fluent interface.

    Parameters

    • arrayY: number[]

      Array of Y-values.

    • step: number = 1

      Optional step between each X coordinate. Defaults to 1.

    • start: number = 0

      Optional value for first generated X-value. If undefined, will continue after last point's X value in series, or 0 if there are no points in series.

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Add Marker to the Series.

    Returns

    SeriesMarkerXY

    Type Parameters

    • PointMarkerType extends PointMarker<PointMarkerType>

    • ResultTableBackgroundType extends UIBackground<ResultTableBackgroundType>

    Parameters

    • cursorBuilder: StaticCursorXYBuilder<PointMarkerType, ResultTableBackgroundType> = ...

      StaticCursorBuilderXY object for customized look of marker. MarkerBuilders.XY can be used to build a custom one from scratch.

    Returns SeriesMarkerXY<PointMarkerType, ResultTableBackgroundType>

  • Permanently destroy the component.

    To fully allow Garbage-Collection to free the resources used by the component, make sure to remove any references to the component and its children in application code.

    let chart = ...ChartXY()
    let axisX = chart.getDefaultAxisX()
    // Dispose Chart, and remove all references so that they can be garbage-collected.
    chart.dispose()
    chart = undefined
    axisX = undefined

    Returns

    Object itself for fluent interface

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Get component highlight animations enabled or not.

    Returns

    Animation enabled?

    Returns boolean

  • Get whether series is taken into account with automatic scrolling and fitting of attached axes.

    By default, this is true for all series.

    Returns

    true default, axes will take series into account in scrolling and fitting operations. false, axes will ignore series boundaries.

    Returns boolean

  • Get theme effect enabled on component or disabled.

    A theme can specify an Effect to add extra visual oomph to chart applications, like Glow effects around data or other components. Whether this effect is drawn above a particular component can be configured using the setEffect method.

     // Example, disable theme effect from a particular component.
    Component.setEffect(false)

    For the most part, theme effects are enabled by default on most components.

    Theme effect is configured with effect property.

    Returns

    Boolean that describes whether drawing the theme effect is enabled around the component or not.

    Returns boolean

  • Get whether auto-fitting of Figures is enabled. When enabled, figures are automatically split / fused based on distance from each other.

    Returns

    Is auto-fitting enabled.

    Returns boolean

  • Get state of component highlighting.

    In case highlight animations are enabled, this method returns the unanimated highlight value.

    Returns

    Number between 0 and 1, where 1 is fully highlighted.

    Returns number

  • Get boolean flag for whether object should highlight on mouse hover

    Returns

    Boolean for if object should highlight on mouse hover or not.

    Returns boolean

  • Get boolean flag for whether object is currently under mouse or not

    Returns

    Boolean for is object under mouse currently

    Returns boolean

  • Returns

    Copy of last point added to the Series or undefined if it doesn't exist.

    Returns undefined | Point

  • Get mouse interactions enabled or disabled. Disabled mouse-interactions will naturally prevent mouse-driven highlighting from ever happening.

    Returns

    Mouse interactions state

    Returns boolean

  • Get the name of the Component.

    Returns

    The name of the Component.

    Returns string

  • Get element visibility.

    Returns

    true when element is set to be visible and false otherwise.

    Returns boolean

  • Returns

    Max X value of the series

    Returns number

  • Returns

    Min X value of the series

    Returns number

  • Returns

    Max Y value of the series

    Returns number

  • Returns

    Min Y value of the series

    Returns number

  • Remove event listener from dispose event.

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Unsubscribe from Highlight object event. This is called whenever an object is highlighted

    Returns

    True if the unsubscription was successful.

    Parameters

    • token: Token

      Token that was received when subscribing to the event.

    Returns boolean

  • Remove event listener from Mouse Click Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Mouse Double Click Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Mouse Down Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Mouse Drag Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Mouse Drag Start Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Mouse Drag Stop Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Mouse Enter Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Mouse Leave Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Mouse Move Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Mouse Up Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Mouse Wheel Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Touch End Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Touch Move Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from Touch Start Event

    Returns

    True if the listener is successfully removed and false if it is not found

    Parameters

    • token: Token

      Token of event listener which has to be removed

    Returns boolean

  • Remove event listener from visibleStateChanged

    Parameters

    • token: Token

    Returns boolean

  • Subscribe to highlight object event. This is called whenever an object is highlighted.

    Returns

    Token that can be used to unsubscribe from the event.

    Parameters

    • handler: ((isHighlighted: number | boolean) => void)

      Function that is called when event is triggered.

        • (isHighlighted: number | boolean): void
        • Parameters

          • isHighlighted: number | boolean

          Returns void

    Returns Token

  • Set component highlight animations enabled or not. For most components this is enabled by default.

     // Example usage, disable highlight animations.
    component.setAnimationHighlight(false)

    Returns

    Object itself

    Parameters

    • enabled: boolean

      Animation enabled?

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Set whether series is taken into account with automatic scrolling and fitting of attached axes.

    By default, this is true for all series.

    By setting this to false, any series can be removed from axis scrolling/fitting.

     // Example syntax, remove series from automatic scrolling / fitting.
    LineSeries.setAutoScrollingEnabled(false)

    Returns

    Object itself for fluent interface.

    Parameters

    • enabled: boolean

      true default, axes will take series into account in scrolling and fitting operations. false, axes will ignore series boundaries.

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Configure formatting of Cursor ResultTable when pointing at this series.

     // Example usage
    OHLCSeries.setCursorResultTableFormatter((tableBuilder, series, ohlcSegment) => {
    return tableBuilder
    .addRow(`Pointing at`, '', series.getName())
    .addRow(`X:`, '', ohlcSegment.getPosition())
    .addRow(`Open:`, '', ohlcSegment.getOpen())
    .addRow(`High:`, '', ohlcSegment.getHigh())
    .addRow(`Low:`, '', ohlcSegment.getLow())
    .addRow(`Close:`, '', ohlcSegment.getClose())
    })

    The general syntax of configuring ResultTable formatting is shared between all series types; You specify a callback function, which receives a TableContentBuilder. The contents of the table are then set using methods of the table builder:

     // Using TableContentBuilder.
    OHLCSeries.setCursorResultTableFormatter((tableBuilder, series, ohlcSegment) => {
    // addRow adds a list of strings to a new row in the table. Empty strings ('') will allocate any extra horizontal space within the row.
    tableBuilder
    .addRow('Item 0:', '', 'Value 0')
    .addRow('Item 1:', '', 'Value 1')
    .addRow('Long row that highlights the idea of empty strings')

    // After configuration, the table builder must be returned!
    return tableBuilder
    })

    Default Axis formatting can be referenced by using formatValue method.

    The additional values that are supplied to the callback function vary between different chart and series types, refer to the series documentation of setCursorResultTableFormatter to learn the exact available information. OHLC Series receive two extra parameters:

    1. series | reference to the series itself.
    2. ohlcSegment | reference to the pointed OHLCSegment, which contains position, open, high, low and close values.

    Related API:

    Returns

    Object itself

    Parameters

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Disable automatic data cleaning.

     // Example syntax, disable data cleaning.
    series.setDataCleaning(undefined)

    Returns

    Object itself for fluent interface.

    Parameters

    • arg: undefined

      Data cleaning configuration.

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Enable automatic data cleaning by minDataPointCount configuration.

    Specifying minDataPointCount enables lazy cleaning of data that is outside view as long as the remaining data amount doesn't go below the configured threshold.

     // Example syntax for specifying minDataPointCount
    series.setDataCleaning({ minDataPointCount: 10000 })

    Usage of minDataPointCount is recommended in most common applications that require automatic data cleaning. The actual value is often not very particular, just setting it above 0 to enable it is usually enough (lazy data cleaning of out of view data).

     // Example, enable lazy data cleaning of out of view data.
    series.setDataCleaning({ minDataPointCount: 1 })

    Returns

    Object itself for fluent interface.

    Parameters

    • arg: {
          minDataPointCount: undefined | number;
      }

      Data cleaning configuration.

      • minDataPointCount: undefined | number

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Enable automatic data cleaning by maxDataPointCount configuration.

    Specifying maxDataPointCount results in data cleaning always happening exactly when total data amount exceeds the supplied threshold.

     // Example syntax for specifying maxDataPointCount
    series.setDataCleaning({ maxDataPointCount: 10000 })

    maxDataPointCount is usually used in memory limited applications to prevent running out of memory.

    maxDataPointCount is currently only supported by only select series:

    If the feature receives good support and usage from the user base, it might be expanded to all series types in a future release.

    Returns

    Object itself for fluent interface.

    Parameters

    • arg: {
          maxDataPointCount: undefined | number;
      }

      Data cleaning configuration.

      • maxDataPointCount: undefined | number

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Configure draw order of the series.

    The drawing order of series inside same chart can be configured by configuring their seriesDrawOrderIndex. This is a simple number that indicates which series is drawn first, and which last.

    The values can be any JS number, even a decimal. Higher number results in series being drawn closer to the top.

    By default, each series is assigned a running counter starting from 0 and increasing by 1 for each series.

        // Example, create 2 series and configure them to be drawn in reverse order.
    const series1 = ChartXY.addLineSeries()
    .setDrawOrder({ seriesDrawOrderIndex: 1 })
    const series2 = ChartXY.addLineSeries()
    .setDrawOrder({ seriesDrawOrderIndex: 0 })
        // Example, ensure a series is drawn above other series.
    SeriesXY.setDrawOrder({ seriesDrawOrderIndex: 1000 })

    Returns

    Object itself.

    Parameters

    • arg: {
          seriesDrawOrderIndex: number;
      }

      Object with seriesDrawOrderIndex property.

      • seriesDrawOrderIndex: number

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Set theme effect enabled on component or disabled.

    A theme can specify an Effect to add extra visual oomph to chart applications, like Glow effects around data or other components. Whether this effect is drawn above a particular component can be configured using the setEffect method.

     // Example, disable theme effect from a particular component.
    Component.setEffect(false)

    For the most part, theme effects are enabled by default on most components.

    Theme effect is configured with effect property.

    Returns

    Object itself.

    Parameters

    • enabled: boolean

      Theme effect enabled

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Set whether auto-fitting of Figures is enabled. When enabled, figures are automatically split / fused based on distance from each other.

    Returns

    Object itself for fluent interface

    Parameters

    • enabled: boolean

      Is auto-fitting enabled.

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Set state of component highlighting.

     // Example usage

    component.setHighlight(true)

    component.setHighlight(0.5)

    If highlight animations are enabled (which is true by default), the transition will be animated. As long as the component is highlighted, the active highlight intensity will be animated continuously between 0 and the configured value. Highlight animations can be disabled with setAnimationHighlight

    Returns

    Object itself

    Parameters

    • highlight: number | boolean

      Boolean or number between 0 and 1, where 1 is fully highlighted.

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Set highlight on mouse hover enabled or disabled.

    Mouse interactions have to be enabled on the component for this to function as expected. See setMouseInteractions for more information.

    Returns

    Object itself for fluent interface.

    Parameters

    • state: boolean

      True if highlighting on mouse hover, false if no highlight on mouse hover

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Set component mouse interactions enabled or disabled.

    Disabling mouse interactions means that the objects below this component can be interacted through it.

    Possible side-effects from disabling mouse interactions:

    • Mouse events are not triggered. For example, onMouseMove.
    • Mouse driven highlighting will not work.

    Returns

    Object itself for fluent interface

    Parameters

    • state: boolean

      Specifies state of mouse interactions

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Set style of negative figures. Negative style is applied after common style. NOTE: Because the function is applied for each figure added, it is not advised to create any objects inside the function.

    Example usage:

    // Explicit style
    // The type of figure can be equal to type parameter NegativeFigure
    OHLCSeries.setNegativeStyle((figure) => ... )

    Returns

    Object itself

    Parameters

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Set resolution of Stock segment packing. Smaller resolution will let user zoom to greater detail. If no resolution has been defined, series will use pixel width of figures as packing resolution.

    Returns

    Object itself

    Remarks

    Series will consume more memory if resolution value is lowered.

    Parameters

    • Optional resolution: number

      Axis value interval for resolution of a single Stock segment or undefined to be automatically calculated based on pixelSize.

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Set style of positive figures. Positive style is applied after common style. NOTE: Because the function is applied for each figure added, it is not advised to create any objects inside the function. Instead they should be previously cached and later referred to.

    Example usage:

    // Explicit style
    // The type of figure can be equal to type parameter PositiveFigure
    OHLCSeries.setPositiveStyle((figure) => ... )

    Returns

    Object itself

    Parameters

    • style: OHLCFigureStyler<PositiveFigure>

      Styler function that is applied to all existing and newly added segments

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>

  • Set common style for both positive and negative figures. NOTE: Because the function is applied for each figure added, it is not advised to create any objects inside the function. Instead they should be previously cached and later referred to.

    Example usage:

    // Explicit style
    // The type of figure can be equal to type parameter PositiveFigure or NegativeFigure
    OHLCSeries.setStyle((figure) => ... )

    Returns

    Object itself

    Parameters

    • style: OHLCFigureStyler<PositiveFigure | NegativeFigure>

      Styler function that is applied to all existing and newly added segments

    Returns OHLCSeriesWithAutomaticPacking<PositiveFigure, NegativeFigure>