Class that represents one Axis in a ParallelCoordinateChart. Axes are first created using setAxes, and later can be accessed using getAxis or axes.

Hierarchy

  • GenericAxis<LinearScale1D, AbstractAxisStrategy, _AbstractAxisTick, _ParallelCoordinateAxisInput, _ParallelCoordinateAxisPlottingVariables, _ParallelCoordinateAxisTickInfo, _ParallelCoordinateAxisOutput>
    • ParallelCoordinateAxis

Implements

Properties

key: string

Key of the Axis. Generally this is the string property name of data samples. e.g. "Height" or "Weight", etc.

title: Eventer<LCJSInteractionEventMap, any> = ...

Interface for attaching listeners to user interaction events (click, pointerenter, etc.) on axis title.

 // Example syntax
axis.title.addEventListener('click', (event) => {
console.log(event)
})

For syntax examples, refer to EventInterface. Available event keys are listed under LCJSInteractionEventMap

userID: unknown

Additional user supplied identification apart from the Axis key. Generally this is a number index (nth axis), or when using Enum-like approach to defining Axes, the value of the Enum-like entry:

 // Enum-like approach syntax
const Axes = {
Weight: 0,
Height: 1,
'Eye color': 2,
}
chart.setAxes(Axes)
chart.getAxis(Axes.Height).userID // `1`

Methods

  • Used in phase 1: after we know what ticks will be displayed, formulate generic information for chart layout calculations (e.g. XY layout for XY charts).

    Parameters

    • input: _ParallelCoordinateAxisInput
    • ticksInfo: Map<_AbstractAxisTick, _ParallelCoordinateAxisTickInfo>

    Returns _ParallelCoordinateAxisOutput

  • Add an end user managed tick to the axis.

    Custom ticks are just like default ticks, except they can be completely controlled by the end user.

     // Example
    const customTick = Axis.addCustomTick()
    // Tick position on Axis.
    .setValue(100)
    .setTextFormatter((value) => `Custom tick at ${value.toFixed(1)}`)

    For full set of configuration API, see ParallelCoordinateAxisCustomTick.

    Returns

    ParallelAxisCustomTick.

    Returns ParallelCoordinateAxisCustomTick

  • Add callback function to be triggered when specified event is fired.

     // Example syntax
    object.addEventListener('click', (event) => {
    console.log(event)
    })

    Some classes also report extra information about the interacted object with the second parameter:

     // Most series share information about interacted data point
    series.addEventListener('click', (event, info) => {
    console.log(info)
    })

    Optional third parameter allows registering event handlers that will automatically remove themselves after first trigger:

     // Example this listener will only fire once
    object.addEventListener('click', (event) => {})

    Each class has its own list of supported events. Some events are from HTML standard (click, pointerdown, etc.), while others are own events from LightningChart JS (dispose, resize, etc.)

    To find what events are available, you can try following:

    • If your development environment has TypeScript enabled, just write addEventListener and see what possible event types the IDE suggests. These APIs are strongly typed, and even the callback event will be correctly typed.
    • Otherwise, open the class section in API documentation and check out which interface K type parameter extends.

    Type Parameters

    Parameters

    Returns void

  • Programmatically add a Range Selector to the Axis. These are used to highlight filtered series in the chart in use cases where you can have even thousands of series at same time. A Range selector defines a value range (start-end) along 1 specific Axis, and as a result all series whose value on that Axis is within the range are highlighted.

     // Example syntax
    const rangeSelector = chart.getAxis('Key').addRangeSelector().setInterval(0, 1)

    Range selectors can also be created using built-in interaction of double clicking an Axis.

    Returns

    ParallelCoordinateAxisRangeSelector object.

    Returns ParallelCoordinateAxisRangeSelector

  • Fit axis view to attached series.

    Parameters

    • Optional animate: number | boolean

      Boolean for animation enabled, or number for animation duration in milliseconds

    • Optional stopAxisAfter: boolean

      If true, stops Axis after fitting

    Returns ParallelCoordinateAxis

  • Format a value along axis to string. Behavior depends on the Axis' TickStrategy. Eq. A DateTime-Axis will interpret 'value' as a Date.

    Returns

    Value formated to string

    Parameters

    • value: number

      Value along axis

    Returns string

  • Get animations disable/enable state.

    Returns

    Animations default state.

    Returns boolean

  • Get fill style of background behind the Axis. By default this is a linear gradient that helps with readability of the tick labels.

    Returns

    FillStyle object.

    Returns FillStyle

  • Get current value of setIntervalRestrictions. By default, no restrictions.

    Returns undefined | {
        endMax?: number;
        endMin?: number;
        intervalMax?: number;
        intervalMin?: number;
        startMax?: number;
        startMin?: number;
    }

  • Get whether element can be target of pointer events or not.

    Disabling pointer events means that the objects below this component can be interacted through it.

    Returns

    Boolean

    Returns boolean

  • Get Axis stopped or not.

    When an Axis is stopped it temporarily prevents the active scroll strategy from changing the Axis interval.

    Axis can be stopped programmatically using this method, and also by different built in interactions, such as panning/zooming.

    Returns

    Axis stopped

    Returns boolean

  • Get stroke style of axis line, that goes from start of axis to end of axis.

    Returns

    LineStyle object.

    Returns LineStyle

  • Get the currently used tick strategy

    Returns "Empty" | "Numeric" | "DateTime" | "Time"

  • Returns

    Axis title string

    Returns string

  • 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 rotation of Axis title.

    Returns

    Rotation in degrees

    Returns number

  • Beta

    Get unit that Axis measures. e.g. "Hz", or "°C".

    • The unit is displayed after the Axis title (if it is defined). e.g. "Axis title (Hz)"

    • Default cursor formatters place the Unit next to units of the Axis.

                Introduced in LightningChart JS v6.0.0. Behavior or API might change in following versions depending on user feedback.
      

    Returns undefined | string

  • Get element visibility.

    Returns

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

    Returns boolean

  • Check whether the object is disposed. Disposed objects should not be used!

    Returns

    true if object is disposed.

    Returns boolean

  • Remove event listener added using addEventListener. The expected argument should be the exact same callback function that was supplied using addEventListener:

     // Basic example syntax
    const listener = () => {}
    obj.addEventListener('click', listener)
    obj.removeEventListener('click', listener)
     // Basic boilerplate of custom interaction when user drags on an object
    obj.addEventListener('pointerdown', (eventDown) => {
    let prevCoord = eventDown
    const handlePointerMove: LCJSInteractionEventListener<'pointermove'> = (eventMove) => {
    const delta = { x: eventMove.clientX - prevCoord.clientX, y: eventMove.clientY - prevCoord.clientY }
    prevCoord = eventMove
    console.log(delta, eventMove.clientX, eventMove.clientY)
    }
    const handlePointerUp: LCJSInteractionEventListener<'pointerup'> = (eventUp) => {
    window.removeEventListener('pointermove', handlePointerMove)
    window.removeEventListener('pointerup', handlePointerUp)
    }
    window.addEventListener('pointermove', handlePointerMove)
    window.addEventListener('pointerup', handlePointerUp)
    })

    Type Parameters

    Parameters

    Returns void

  • Specifies zoom animation to use.

    Example usage:

    Desired result Argument Parameters
    Change animation setAnimationZoom(AnimationEasings.easeOut, 500) First parameter defines the easing to use for the animation. Second parameter is optional, and defines the duration for the animation
    Disable zooming animations axis.setAnimationZoom(undefined) Passing undefined as the parameter will disable the zooming animations for the Axis.

    Parameters

    • easing: undefined | AnimationEasing

      Easing of animation. Undefined disables zoom animations. See 'common/animator.Easings' for defaults

    • duration: number = 300

      Optional default duration for zooming animations in milliseconds

    Returns ParallelCoordinateAxis

  • Beta

    Method that allows disabling Axis allocating automatic pixel based regions around data start and data end. For example, if Axis has attached point series with 10px size, the Axis can automatically add 10px gaps at both start and end.

    This behavior is enabled normally, but in some cases it can cause problems with several axes being out of sync, in which case they can be disabled with this method.

    Returns

    Object itself.

    Introduced in v5.2.0. Method may be removed/changed depending on how the related use cases evolve.

    Parameters

    • enabled: boolean

      Auto regions enabled or not.

    Returns ParallelCoordinateAxis

  • Set Axis default interval. This does the same as setInterval method, but is also applied again whenever fit is triggered, or the "zoom to fit" user interaction is triggered.

    Intended to be used in use cases that set an Axis interval nicely at start of application.

     // Example 1, set hardcoded interval at application start
    Axis.setDefaultInterval({ start: 0, end: 100 })

    This method also allows interval specification as a callback function, allowing the applied default interval to be based on the range of data or current axis interval:

     // Example 2, scrolling axis - when axis is fitted, restore default time window and continue scrolling
    Axis.setDefaultInterval((state) => ({
    end: state.dataMax ?? 0,
    start: (state.dataMax ?? 0) - 10_000,
    stopAxisAfter: false,
    }))
     // Example 3, add some extra space
    Axis.setDefaultInterval((state) => ({
    start: (state.dataMin ?? 0) - 10,
    end: (state.dataMax ?? 0) + 10,
    }))

    Parameters

    • arg: undefined | AxisIntervalConfiguration | ((state: {
          curEnd: number;
          curStart: number;
          dataMax: undefined | number;
          dataMin: undefined | number;
      }) => AxisIntervalConfiguration)
    • Optional opts: {
          applyImmediately: boolean;
      }
      • applyImmediately: boolean

    Returns ParallelCoordinateAxis

  • Set axis interval.

    Examples:

     // Set interval start and end.
    Axis.setInterval({ start: 0, end: 5000 })
     // Set interval end only.
    Axis.setInterval({ end: 5000 })
     // Set interval but don't stop the axis from scrolling
    Axis.setInterval({ start: 0, end: 5000, stopAxisAfter: false })
     // Set interval with 2000 milliseconds long animation
    Axis.setInterval({ start: 0, end: 5000, animate: 2000 })

    Returns

    Object itself for fluent interface

    Parameters

    Returns ParallelCoordinateAxis

  • Set restrictions on Axis interval (start/end). These are not applied immediately, but affect all axis scrolling and user interactions afterwards.

     // Example 1, prevent zooming outside active data set
    Axis.setIntervalRestrictions((state) => ({
    startMin: state.dataMin,
    endMax: state.dataMax,
    }))
     // Example 2, set max zoom in level (intervalMin)
    Axis.setIntervalRestrictions({ intervalMin: 10 })
     // Example 3, set max zoom out level (intervalMax)
    Axis.setIntervalRestrictions({ intervalMax: 1000 })
     // Example 4, no restrictions
    Axis.setIntervalRestrictions(undefined)

    Parameters

    • arg: undefined | {
          endMax?: number;
          endMin?: number;
          intervalMax?: number;
          intervalMin?: number;
          startMax?: number;
          startMin?: number;
      } | ((state: {
          curEnd: number;
          curStart: number;
          dataMax: undefined | number;
          dataMin: undefined | number;
      }) => {
          endMax?: number;
          endMin?: number;
          intervalMax?: number;
          intervalMin?: number;
          startMax?: number;
          startMin?: number;
      })

    Returns ParallelCoordinateAxis

  • Set whether element can be target of pointer events or not.

    Disabling pointer events means that the objects below this component can be interacted through it.

    Returns

    Object itself for fluent interface

    Parameters

    • state: boolean

      Specifies state of mouse interactions

    Returns ParallelCoordinateAxis

  • Set Axis stopped or not.

    When an Axis is stopped it temporarily prevents the active scroll strategy from changing the Axis interval.

    Axis can be stopped programmatically using this method, and also by different built in interactions, such as panning/zooming.

     // Example, stop Axis scrolling / fitting.
    Axis.setStopped(true)

    Returns

    Object itself

    Parameters

    • stopped: boolean

      Axis stopped

    Returns ParallelCoordinateAxis

  • 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 ParallelCoordinateAxis

  • Beta

    Set unit that Axis measures. e.g. "Hz", or "°C". This is a convenience API that affects following things:

    • The unit is displayed after the Axis title (if it is defined). e.g. "Axis title (Hz)"
    • Default cursor formatters place the Unit next to units of the Axis.
     // Example syntax
    axis
    .setTitle('Frequency')
    .setUnits('Hz')

    axis.setUnits('Hz', { displayOnAxis: false })

    Returns

    Object itself.

                Introduced in LightningChart JS v6.0.0. Behavior or API might change in following versions depending on user feedback.
    

    Parameters

    • units: undefined | string

      String or undefined.

    • behavior: AxisUnitsBehavior = {}

      Optional extra argument to control which side effects of configuring Units are enabled.

    Returns ParallelCoordinateAxis