Chart for visualizing a single value within a interval.

** Creating Gauge Chart **

// Create a Gauge Chart with specific options.
const chart = lightningChart().GaugeChart({
// Chart options
})

The gauge interval can be adjusted to suit the granularity of the data being visualized.

The gauge bar can be configured to display data over a specific range of angles. This allows for customization of the visual appearance of the gauge, such as whether it covers a full circle or just a segment of it.

Gauge chart can display value indicators on top of the main bar, which are additional intervals superimposed on the main gauge bar. These value indicators can be used to delineate certain thresholds or value ranges of interest in the data.

Hierarchy

Implements

Properties

Methods

addEventListener addLegendBox addUIElement attach dispose getAngleInterval getAnimationsEnabled getAutomaticBarColoring getAutomaticGlowColoring getBackgroundFillStyle getBackgroundStrokeStyle getBarColor getBarEffect getBarGradient getBarStrokeStyle getBarThickness getGapBetweenBarAndValueIndicators getInterval getIsInView getLabelEffect getLegendBoxes getMinimumSize getNeedleAlignment getNeedleFillStyle getNeedleLength getNeedleStrokeStyle getNeedleThickness getPadding getRoundedEdges getSizePixels getTheme getTickFillStyle getTickFont getTickFormatter getTitle getTitleEffect getTitleFillStyle getTitleFont getTitleMargin getTitleRotation getTitleShadow getTitleSize getUnitLabel getUnitLabelFillStyle getUnitLabelFont getValue getValueIndicatorThickness getValueIndicators getValueLabel getValueLabelFillStyle getValueLabelFont isDisposed removeEventListener saveToFile setAngleInterval setAnimationsEnabled setAutomaticBarColoring setBackgroundFillStyle setBackgroundStrokeStyle setBarColor setBarEffect setBarGradient setBarStrokeStyle setBarThickness setColorAnimation setGapBetweenBarAndValueIndicators setGlowColor setInterval setLabelEffect setNeedleAlignment setNeedleFillStyle setNeedleLength setNeedleStrokeStyle setNeedleThickness setPadding setRoundedEdges setTickFillStyle setTickFont setTickFormatter setTitle setTitleEffect setTitleFillStyle setTitleFont setTitleMargin setTitleRotation setTitleShadow setUnitLabel setUnitLabelFillStyle setUnitLabelFont setValue setValueAnimation setValueFormatter setValueIndicatorThickness setValueIndicators setValueLabelFillStyle setValueLabelFont translateCoordinate

Properties

_isPanelResized: boolean = true

Flag that is set whenever Panel or any scale is resized.

Will be handled before plot to update scale and trigger resize event just once per frame.

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

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

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

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

Please note that many chart types have a separate "series background" (area enclosed by axes), which has its own separate events. This is accessed via seriesBackground property.

coordsClient: "client" = 'client'

Selector for "client" Coordinate System.

This references the coordinate system used in HTML. It starts at top left of the web page and is measured in pixels. For example, { x: 100, y: 20 } corresponds to 100 pixels from left and 20 pixels from top.

JavaScript events are tracked and HTML elements are positioned in the client coordinate system.

This selector can be used for translating client coordinates to other coordinate systems and vice versa. For example, in order to:

  • Position LCJS UI elements in client coordinates
  • Find client coordinate that matches a location along LCJS Axis or Chart.
  • etc.

See translateCoordinate for more detailed use case information and example usage.

coordsRelative: "relative" = 'relative'

Selector for "relative" Coordinate System.

This coordinate system is relative to the bottom left corner of the Control (chart/dashboard/etc.), and is measured as pixels. For example, { x: 100, y: 20 } corresponds to 100 pixels from left and 20 pixels from bottom.

This selector can be used for two purposes:

Positioning LCJS UI elements in pixels:

 // Position UI element in pixels by supplying `Control.coordsRelative` as its positioning system.
const textBox = Control.addUIElement(UIElementBuilders.TextBox, Control.coordsRelative)
.setOrigin(UIOrigins.LeftBottom)
.setPosition({ x: 100, y: 20 })

Translations between coordinate systems:

Use with translateCoordinate method to translate coordinates from "relative" to another coordinate system.

engine: PublicEngine

Interface for end user API of the LCJS engine. It provides some useful capabilities over the area enclosed by a single LCJS context (which can be just a single chart, or a Dashboard with several charts).

removePanel: ((panel: Panel) => void)

Type declaration

    • (panel: Panel): void
    • Parameters

      Returns void

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

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

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

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

uiScale: LinearScaleXY

Scale for panel area in percentages (0-100).

While it is not functionally equal to this, using coordsRelative coordinate system is preferred (more confidence for long term support).

Methods

  • 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

  • Add a legendbox.

    Legendbox is a type of UI element, that floats inside the chart/component it is created inside. It can be freely moved around with user interactions, as well as positioned in application code.

    The purpose of legendbox is to describe the series and other visual components of the chart, by displaying their names and colors. Hovering over a series' legendbox entry will highlight that series, and clicking on the entry will toggle that series' visibility.

    Legendbox alignment:

    Alignment of legendbox can be selected by supplying one of the available LegendBoxBuilders to addLegendBox:

     // Default (vertical) LegendBox.
    const legendBox = ChartXY.addLegendBox()

    // Horizontal LegendBox.
    const horizontalLegendBox = ChartXY.addLegendBox(LegendBoxBuilders.HorizontalLegendBox)

    Custom Legendbox positioning:

    By default LegendBoxes are placed on the right side, or bottom of the chart (depending on alignment).

    A custom location can be configured with UIElement API:

    Position coordinate system is specified when creating legendbox.

    1. LegendBox with default positioning coordinate system.
     addLegendBox( LegendBoxBuilders.VerticalLegendBox )
    // Position = [0, 100] as percentages.
    .setPosition({ x: 50, y: 50 })
    1. Position in pixel coordinate system.
     addLegendBox( LegendBoxBuilders.VerticalLegendBox, chart.coordsRelative )
    // Position = pixels.
    .setPosition({ x: 300, y: 100 })
    1. Position on Axes.
     addLegendBox( LegendBoxBuilders.VerticalLegendBox, { x: chartXY.getDefaultAxisX(), y: chartXY.getDefaultAxisY() } )
    // Position = Axis values.
    .setPosition({ x: 5, y: 5 })

    Returns

    LegendBox

    Parameters

    • builder: UILegendBoxBuilder<InternalBackground> = _legendBoxBuilder

      LegendBoxBuilder. If omitted, VerticalLegendBox will be selected. Use LegendBoxBuilders for selection.

    • scale: UserScaleDefinition = ...

      Optional parameter for altering the coordinate system used for positioning the LegendBox. Defaults to whole Chart in percentages [0, 100].

    Returns LegendBox<UIBackground>

  • Add a stand-alone UIElement using a builder.

    Example usage:

    1. TextBox with default positioning coordinate system.
     addUIElement( UIElementBuilders.TextBox )
    // Position = [0, 100] as percentages.
    .setPosition({ x: 50, y: 50 })
    1. Position in pixel coordinate system.
     addUIElement( UIElementBuilders.TextBox, chart.coordsRelative )
    // Position = pixels.
    .setPosition({ x: 300, y: 100 })
    1. Position on Axes.
     addUIElement( UIElementBuilders.TextBox, { x: chartXY.getDefaultAxisX(), y: chartXY.getDefaultAxisY() } )
    // Position = Axis values.
    .setPosition({ x: 5, y: 5 })

    Returns

    Object that fulfills interfaces: UIElementType (typeparam) and UIElement

    Type Parameters

    Parameters

    • builder: UIElementBuilder<UIElementType> = ...

      UIElementBuilder. If omitted, TextBoxBuilder will be selected. Use UIElementBuilders for selection.

    • scale: UserScaleDefinition = ...

      Optional parameter for altering the coordinate system used for positioning the UIElement. Defaults to whole Chart in percentages [0, 100].

    Returns UIElementType & UIElement

  • Attach object to an legendBox entry

    Returns

    Series itself for fluent interface

    Parameters

    • entry: LegendBoxEntry<UIBackground>

      Object which has to be attached

    • toggleVisibilityOnClick: boolean = true

      Flag that indicates whether the Attachable should be hidden or not, when its respective Entry is clicked.

    • matchStyleExactly: boolean = false

      By default, entries are assigned a smooth looking gradient based on the component color. If this flag is true, then this is skipped, and exact component solid fill is used instead.

    Returns GaugeChart

  • Permanently dispose 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 GaugeChart

  • Get the angle interval of the gauge.

    Returns

    Object containing the current start and end angles of the gauge.

    Returns {
        end: number;
        start: number;
    }

    • end: number
    • start: number
  • Get animations disable/enable state.

    Returns

    Animations default state.

    Returns boolean

  • Get the boolean value whether dynamic gauge bar coloring is enabled.

    Returns

    Boolean flag

    Returns boolean

  • Get the boolean value whether dynamic background coloring is enabled.

    Returns

    Boolean flag

    Returns boolean

  • Get the current color of the gauge bar.

    Returns

    Color object

    Returns Color

  • 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 the boolean value whether gradient coloring is enabled on the gauge bar.

    Returns

    Boolean flag

    Returns boolean

  • Get the stroke style of the gauge bar.

    Returns

    LineStyle object

    Returns LineStyle

  • Get the thickness of the gauge bar.

    Returns

    Thickness in pixels

    Returns number

  • Get the distance between gauge bar and value indicators.

    Returns

    Distance in pixels

    Returns number

  • Get the interval of the gauge.

    Returns

    Object containing the current start and end of the gauge.

    Returns {
        end: number;
        start: number;
    }

    • end: number
    • start: number
  • Find if chart is currently considered to be in the browser viewport.

    Returns

    true when panel is in view

    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 minimum size of Chart. Depending on the type of class this value might be automatically computed to fit different elements.

    Returns

    Vec2 minimum size or undefined if unimplemented

    Returns undefined | Point

  • Get the alignment value of the needle.

    Returns

    Alignment value

    Returns number

  • The the FillStyle of the needle line.

    Returns

    FillStyle object

    Returns FillStyle

  • Get the length of the needle.

    Returns

    Length of the needle in pixels.

    Returns number

  • Get the LineStyle of the needle border.

    Returns

    LineStyle object

    Returns LineStyle

  • Get the thickness of the needle.

    Returns

    Thickness in pixels

    Returns number

  • Get the boolean value whether rounded edges are enabled for the gauge.

    Returns

    Boolean flag

    Returns boolean

  • Get size of control as pixels.

    For stand-alone component, the size will be equal to the size of its containing HTML <div> (Control.engine.container)

    For component inside Dashboard, the size will only include the component itself, so size can be less than the size of containing HTML <div>.

    Returns

    Object with x and y properties { x: number, y: number }, where both are pixel values.

    Returns Point

  • Returns the Theme currently being used.

    Returns

    An object containing the Theme.

    Returns Theme

  • Get the FillStyle of gauge ticks.

    Returns

    FillStyle object

    Returns FillStyle

  • Get the formatter function for gauge ticks.

    Returns

    Formatting function

    Returns {}

    • Get text of Chart title.

      Returns

      Chart title as a 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 Chart title.

      Returns

      Rotation in degrees

      Returns number

    • Beta

      Not to be confused with GlowEffect

      Introduced in v7.0. API may be changed according to user feedback and reports.
      

      Returns undefined | Color

    • Get Chart title size.

      This depends on current title content, font and style.

      Returns

      Size of Chart title in pixels

      Returns Point

    • Get the text of unit label.

      Returns

      String

      Returns string

    • Get the FillStyle of unit label.

      Returns

      FillStyle object

      Returns FillStyle

    • Get the current value of the gauge.

      Returns

      Current gauge value

      Returns number

    • Get the thickness of the value indicators.

      Returns

      Thickness in pixels

      Returns number

    • Get the current value indicators of the gauge.

      Returns

      Array of value indicators

      Returns {
          color: Color;
          end: number;
          endLabel?: string;
          start: number;
          startLabel?: string;
      }[]

    • Get the value or the formatter of value label

      Returns

      Formatting function

      Returns string | {}

    • Get the FillStyle of value label.

      Returns

      FillStyle object

      Returns FillStyle

    • 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

      • type: K
      • listener: ((event: PanelEventMap[K], info: unknown) => unknown)

        Listener that was added using addEventListener.

      Returns void

    • Capture rendered state in an image file. Prompts the browser to download the created file.

      NOTE: The download might be blocked by browser/plugins as harmful. To prevent this, only call the method in events tied to user-interactions. From mouse-event handlers, for example.

      Has two optional parameters which directly reference JavaScript API HTMLCanvasElement.toDataURL. For supported image formats, compression quality, Etc. refer to:

      https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toDataURL

      Example usage:

      // Download 'screenshot.png'
      Panel.saveToFile('screenshot')
      // Attempt download 'maybeNotSupported.bmp'
      Panel.saveToFile('maybeNotSupported', 'image/bmp')
      // Attempt download jpeg.file with specified compression quality
      Panel.saveToFile('fileName', 'image/jpeg', 0.50)

      Remarks

      If 'type' is not supported by browser, an Error will be thrown.

      Parameters

      • fileName: string

        Name of prompted download file as string. File extension shouldn't be included as it is automatically detected from 'type'-argument.

      • Optional type: string

        A DOMString indicating the image format. The default format type is image/png.

      • Optional encoderOptions: number

        A Number between 0 and 1 indicating the image quality to use for image formats that use lossy compression such as image/jpeg and image/webp. If this argument is anything else, the default value for image quality is used. The default value is 0.92.

      Returns GaugeChart

    • Set the angle interval of the gauge.

      chart.setAngleInterval(180, 0)
      

      Returns

      Object itself

      Parameters

      • angleStartDeg: number

        Start angle

      • angleEndDeg: number

        End angle

      Returns GaugeChart

    • Disable/Enable all animations of the Chart.

      chart.setAnimationsEnabled(true)
      

      Returns

      Chart itself for fluent interface.

      Parameters

      • animationsEnabled: boolean

        Boolean value to enable or disable animations.

      Returns GaugeChart

    • Enable or disable dynamic gauge bar coloring based on value indicators. If true, gauge bar is colored with the current indicator color. If false, gauge bar is always colored according to its "normal" color, setBarColor

      chart.setAutomaticBarColoring(true)
      

      Returns

      Object itself

      Parameters

      • arg: undefined | boolean

        Boolean flag

      Returns GaugeChart

    • Set FillStyle of chart background.

       // Example usage,
      ChartXY.setBackgroundFillStyle(new SolidFill({ color: ColorRGBA( 80, 0, 0 ) }))

      Related API:

      • Use SolidFill to describe a solid fill color.
      • Use ColorRGBA to create a color from Red, Green, Blue (and optionally) Alpha values in range [0, 255].

      Transparent chart backgrounds:

      LightningChart JS charts can be configured to be fully or partially transparent.

       // Example, partially transparent chart

      // Engine background exists under all LCJS components. In case of Dashboard, there is only 1 shared engine background.
      chart.engine.setBackgroundFillStyle(emptyFill)
      // Chart background covers every 1 chart. In case of Dashboard, every chart has its own chart background.
      chart.setBackgroundFillStyle(new SolidFill({ color: ColorRGBA(0, 0, 0, 100) }))
      // Some charts also have a separate series background.
      chart.setSeriesBackgroundFillStyle(new SolidFill({ color: ColorRGBA(0, 0, 0, 100) }))

      Returns

      Object itself

      Parameters

      Returns GaugeChart

    • Set the normal bar color, when not affected by value coloring.`

      chart.setBarColor(ColorRGBA(255, 0, 0))
      

      Returns

      Object itself

      Parameters

      • color: Color

        Color object

      Returns GaugeChart

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

    • Enable or disable gradient coloring for the gauge bar. If true, the active color of the Gauge Bar is mapped to a RadialGradientFill. If false, bar is always solid color.

      chart.setBarGradient(true)
      

      Returns

      Object itself

      Parameters

      • enabled: boolean

        Boolean flag

      Returns GaugeChart

    • Set the thickness of the gauge bar.

      chart.setBarThickness(20)
      

      Returns

      Object itself

      Parameters

      • pixels: number

        Thickness in pixels

      Returns GaugeChart

    • Enable or disable color animations.

      // Slow down animation
      chart.setColorAnimation(true, 0.75)
      // Speed up animation
      chart.setColorAnimation(true, 1.25)
      // Disable animation
      chart.setColorAnimation(false)

      Returns

      Object itself

      Parameters

      • enabled: boolean

        Boolean flag

      • speedMultiplier: number = 1

        Optional value for adjusting the speed of the animation

      Returns GaugeChart

    • Set the distance between gauge bar and value indicators.

      chart.setGapBetweenBarAndValueIndicators(4)
      

      Returns

      Object itself

      Parameters

      • gap: number

        Distance in pixels

      Returns GaugeChart

    • Set the background glow color. arg: undefined = No background glow color. arg: Color = Use explicit glow color always. arg: { auto: true } = Automatically color with same color as gauge bar.

      // Disable background glow
      chart.setGlowColor(undefined)
      // Use explicit glow color
      chart.setGlowColor(ColorRGBA(255, 0, 0, 64))
      // Use dynamic coloring, set alpha value
      chart.setGlowColor({auto: true, alpha: 32})

      Returns

      Object itself

      Parameters

      • arg: undefined | Color | {
            alpha?: number;
            auto: boolean;
        }

        undefined | Color | { auto: boolean }

      Returns GaugeChart

    • Sets the gauge value interval.

      chart.setInterval(-100, 100)
      

      Returns

      Object itself

      Parameters

      • start: number

        start value

      • end: number

        end value

      Returns GaugeChart

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

    • Align the gauge needle from the gauge bar center.

      chart.setNeedleAlignment(-1)
      

      Returns

      Object itself

      Parameters

      • offset: number

        Numerical offset value between -1 and 1

      Returns GaugeChart

    • Set the length of the gauge needle.

      chart.setNeedleLength(20)
      

      Returns

      Object itself

      Parameters

      • pixels: number

        Length in pixels

      Returns GaugeChart

    • Set the thickness of the needle.

      chart.setNeedleThickness(10)
      

      Returns

      Object itself

      Parameters

      • thickness: number

        Thickness in pixels

      Returns GaugeChart

    • Set padding around Chart in pixels.

       // Example 1, specify complete padding (four sides).
      ChartXY.setPadding({ left: 16, right: 16, top: 32, bottom: 8 })
       // Example 2, specify only single padding.
      ChartXY.setPadding({ right: 64 })

      Returns

      Object itself

      Parameters

      • padding: number | Partial<Margin>

        Number with pixel margins for all sides or datastructure with individual pixel paddings for each side. Any side can be omitted, only passed values will be overridden.

      Returns GaugeChart

    • Enable or disable rounded edges for the gauge nad value indicators.

      chart.setRoundedEdges(false)
      

      Returns

      Object itself

      Parameters

      • enabled: boolean

        Boolean flag

      Returns GaugeChart

    • Set the formatter function of gauge ticks.

      chart.setTickFormatter((value) => value.toFixed(1))
      

      Returns

      Object itself

      Parameters

      • formatter: ((value: number) => string)

        Callback function to format tick values

          • (value: number): string
          • Parameters

            • value: number

            Returns string

      Returns GaugeChart

    • Set text of Chart title.

      Returns

      Object itself for fluent interface.

      Parameters

      • title: string

        Chart title as a string.

      Returns GaugeChart

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

    • Specifies padding after chart title.

      This does not have an effect if title is hidden (empty FillStyle).

       // Example 1, specify vertical margins
      ChartXY.setTitleMargin({ top: 0, bottom: 10 })

      // Example 2, specify margins for all sides with same value for Title.
      ChartXY.setTitleMargin(40)

      Returns

      Chart itself for fluent interface

      Parameters

      • marginPixels: number | Partial<Margin>

        Gap after the chart title in pixels.

      Returns GaugeChart

    • Set the text of the unit label.

      chart.setUnitLabel("°C")
      

      Returns

      Object itself

      Parameters

      • label: string

        Unit label text

      Returns GaugeChart

    • Set the value of the gauge.

      chart.setValue(100)
      

      Returns

      Object itself

      Parameters

      • value: number

        Gauge value

      Returns GaugeChart

    • Enable or disable value animations.

      // Slow down animation
      chart.setValueAnimation(true, 0.75)
      // Speed up animation
      chart.setValueAnimation(true, 1.25)
      // Disable animation
      chart.setValueAnimation(false)

      Returns

      Object itself

      Parameters

      • enabled: boolean

        Boolean flag

      • speedMultiplier: number = 1

        Optional value for adjusting the speed of the animation

      Returns GaugeChart

    • Set the text or formatting of the value label.

      chart.setValueFormatter((value) => value.toFixed(1))
      

      Returns

      Object itself

      Parameters

      • arg: string | ((value: number) => string)

        String value or callback function to format the value label

      Returns GaugeChart

    • Set the thickness of the value indicators.

      chart.setValueIndicatorThickness(10)
      

      Returns

      Object itself

      Parameters

      • pixels: number

        Thickness in pixels

      Returns GaugeChart

    • Set the value indicators of the gauge.

      chart.setValueIndicators([
      { start: 0, end: 25, color: ColorCSS('red') },
      { start: 25, end: 50, color: ColorCSS('orange') },
      { start: 50, end: 75, color: ColorCSS('yellow') },
      { start: 75, end: 100, color: ColorCSS('green') },
      ])

      Returns

      Object itself

      Parameters

      • indicators: {
            color: Color;
            end: number;
            endLabel?: string;
            start: number;
            startLabel?: string;
        }[]

        Array of value indicators

      Returns GaugeChart

    • Translate a coordinate in HTML client coordinate system to relative coordinates within the component.

       const locationClient = { clientX: document.body.clientWidth * 0.2, clientY: document.body.clientHeight * 0.5 }
      const locationRelative = chart.translateCoordinate(locationClient, chart.coordsRelative)
      // locationRelative is in pixels relative to bottom left corner of the chart

      Relative coordinates can be used for positioning LightningChart JS UI components:

       const textBox = chart.addUIElement(UIElementBuilders.TextBox, chart.coordsRelative)
      // Left bottom of TextBox is positioned 20 pixels right and 20 pixels up from charts bottom left corner
      .setOrigin(UIOrigins.LeftBottom)
      .setPosition({ x: 20, y: 20 })

      NOTE: Currently coordinate translations can't be guaranteed to be in sync with latest updates to charts. For example, if you change axis interval, or add data to a series, you need to wait for 1 frame to be displayed before translateCoordinate will behave as expected.

       LineSeries.add(myData)
      requestAnimationFrame(() => {
      // translateCoordinate should now consider data added just now.
      })

      Type Parameters

      • T extends "relative"

      Parameters

      Returns T extends "relative" ? CoordinateXY : never

    • Translate a coordinate from relative control coordinates to HTML client coordinate system.

       // 10 pixels left and 20 pixels up from controls bottom left corner
      const locationRelative = { x: 10, y: 20 }
      const locationClient = chart.translateCoordinate(locationRelative, chart.coordsRelative, chart.coordsClient)

      Client coordinates can be used to absolute position HTML elements using CSS, for example.

       myHTMLElement.style.position = 'absolute'
      myHTMLElement.style.left = locationClient.clientX
      myHTMLElement.style.top = locationClient.clientY

      NOTE: Currently coordinate translations can't be guaranteed to be in sync with latest updates to charts. For example, if you change axis interval, or add data to a series, you need to wait for 1 frame to be displayed before translateCoordinate will behave as expected.

       LineSeries.add(myData)
      requestAnimationFrame(() => {
      // translateCoordinate should now consider data added just now.
      })

      Type Parameters

      • T extends "client"

      Parameters

      • coordinate: CoordinateXY
      • srcCoordinateSystem: "relative"
      • targetCoordinateSystem: T

      Returns T extends "client" ? CoordinateClient : never