Class MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

Chart class for visualizing a Map of a selected part of the world. Defaults to the entire world.

MapChart can be created in two different ways - to learn more about creation time configuration of MapChart, please refer to:

MapChart features

  1. Map Types

MapChart supports 9 different map types, each of which depicts a different part of the world. Map types can also be split based on different types of regions, like countries, states, territories, provinces, etc.

Supported map types:

  • MapTypes.World | Map of the whole world, regions as countries.
  • MapTypes.Europe | Map of Europe, regions as countries.
  • MapTypes.Africa | Map of Africa, regions as countries.
  • MapTypes.Asia | Map of Asia, regions as countries.
  • MapTypes.NorthAmerica | Map of North America, regions as countries.
  • MapTypes.SouthAmerica | Map of South America, regions as countries.
  • MapTypes.Australia | Map of Australia, regions as Australian territories.
  • MapTypes.USA | Map of the United States of America, regions as states.
  • MapTypes.Canada | Map of Canada, regions as Canadian territories and provinces.

Map type is selected when the MapChart is created, with the type argument:

 // Example, specify map type.
const mapChart = lightningChart().Map({
type: MapTypes.Europe,
})
  1. Style and dynamic region coloring

MapChart has two style properties: region fill style and stroke style. The style is shared for all regions.

Style is configured with

Dynamic region coloring is possibly by configuring fill style with PalettedFill.

 // Example, enable dynamic region coloring based on a color look-up table.
MapChart.setFillStyle(new PalettedFill({
lut: new LUT({
interpolate: true,
steps: [
{ value: 0, color: ColorRGBA(255, 0, 0) },
{ value: 100, color: ColorRGBA(0, 255, 0) }
]
})
}))

Region values used for color look-up are configured with invalidateRegionValues. This method is very flexible and can be used in a variety of ways - refer to the method documentation for more examples.

 // Example, set value of "Finland" region to `0`.
MapChart.invalidateRegionValues([
{ value: 0, ISO_A3: 'FIN' }
])
  1. AutoCursor

MapChart has built-in AutoCursor functionality, which is activated when user pointer is above any region.

Auto cursor can be configured in a variety of ways:

Required resources:

MapChart requires external file resources in order to work. These resources are distributed along with the LightningChart JS package (node_modules/@arction/lcjs/dist/resources).

In order to use MapChart the map resources need to be hosted on a file server. When MapChart is created, a GET request will be issued to URL: <resourcesBaseUrl>/maps/<mapDataFile>.

The file server location can be specified by supplying a resourcesBaseUrl, please see resourcesBaseUrl for general information and troubleshooting on LCJS resources.

The following table documents which resource files are required based on used Map type:

Map type Map data file
MapTypes.World 'countries_world.json'
MapTypes.Europe 'countries_europe.json'
MapTypes.NorthAmerica 'countries_northAmerica.json'
MapTypes.SouthAmerica 'countries_southAmerica.json'
MapTypes.Africa 'countries_africa.json'
MapTypes.Asia 'countries_asia.json'
MapTypes.USA 'states_usa.json'
MapTypes.Canada 'territoriesProvinces_canada.json'
MapTypes.Australia 'territories_australia.json'

Type Parameters

Hierarchy

Implements

Properties

Methods

addLegendBox addUIElement attach dispose getAnimationsEnabled getAutoCursor getAutoCursorMode getBackgroundFillStyle getBackgroundStrokeStyle getCursorResultTableFormatter getEffect getFillStyle getMinimumSize getMouseInteractions getOutlierRegionFillStyle getOutlierRegionStrokeStyle getPadding getSeparateRegionFillStyle getSeparateRegionStrokeStyle getStrokeStyle getTheme getTitle getTitleEffect getTitleFillStyle getTitleFont getTitleMargin getTitleRotation getTitleSize invalidateRegionValues offBackgroundMouseClick offBackgroundMouseDoubleClick offBackgroundMouseDown offBackgroundMouseDrag offBackgroundMouseDragStart offBackgroundMouseDragStop offBackgroundMouseEnter offBackgroundMouseLeave offBackgroundMouseMove offBackgroundMouseTouchStart offBackgroundMouseUp offBackgroundMouseWheel offBackgroundTouchEnd offBackgroundTouchMove offDispose offMapDataReady offMouseClick offMouseDoubleClick offMouseDown offMouseDrag offMouseDragStart offMouseDragStop offMouseEnter offMouseLeave offMouseMove offMouseUp offMouseWheel offResize offTouchEnd offTouchMove offTouchStart offViewChange onBackgroundMouseClick onBackgroundMouseDoubleClick onBackgroundMouseDown onBackgroundMouseDrag onBackgroundMouseDragStart onBackgroundMouseDragStop onBackgroundMouseEnter onBackgroundMouseLeave onBackgroundMouseMove onBackgroundMouseUp onBackgroundMouseWheel onBackgroundTouchEnd onBackgroundTouchMove onBackgroundTouchStart onDispose onMapDataReady onMouseClick onMouseDoubleClick onMouseDown onMouseDrag onMouseDragStart onMouseDragStop onMouseEnter onMouseLeave onMouseMove onMouseUp onMouseWheel onResize onTouchEnd onTouchMove onTouchStart onViewChange saveToFile setAnimationsEnabled setAutoCursor setAutoCursorMode setBackgroundFillStyle setBackgroundStrokeStyle setCursorResultTableFormatter setEffect setFillStyle setMouseInteractions setOutlierRegionFillStyle setOutlierRegionStrokeStyle setPadding setSeparateRegionFillStyle setSeparateRegionStrokeStyle setStrokeStyle setTitle setTitleEffect setTitleFillStyle setTitleFont setTitleMargin setTitleRotation

Properties

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).

pixelScale: LinearScaleXY

Scale for panel area in pixels.

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

Type declaration

    • (panel: Panel): void
    • Parameters

      Returns void

uiScale: LinearScaleXY

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

Methods

  • 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.pixelScale )
    // 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.pixelScale )
    // 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

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

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • 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 MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Get animations disable/enable state.

    Returns

    Animations default state.

    Returns boolean

  • Returns

    Auto cursor object

    Returns CursorType

  • 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 Fill Style of Map regions.

    Returns

    FillStyle.

    Returns FillStyle

  • Get minimum size of Panel. 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 mouse interactions enabled or disabled.

    Returns

    Mouse interactions state

    Returns boolean

  • Get FillStyle of outlier regions (parts of map that are visible, but not interactable with active map type).

    Returns

    FillStyle

    Returns FillStyle

  • Get LineStyle of outlier regions (parts of map that are visible, but not interactable with active map type).

    Returns

    LineStyle

    Returns LineStyle

  • Get FillStyle of Separate regions, which are visual components surrounding areas such as Alaska and Hawaii.

    Separate regions are present in following Map types:

    • MapTypes.USA

    Returns

    FillStyle

    Returns FillStyle

  • Get LineStyle of Separate regions, which are visual components surrounding areas such as Alaska and Hawaii.

    Separate regions are present in following Map types:

    • MapTypes.USA

    Returns

    LineStyle

    Returns LineStyle

  • Returns the Theme currently being used.

    Returns

    An object containing the Theme.

    Returns Theme

  • 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

  • Get Chart title size.

    This depends on current title content, font and style.

    Returns

    Size of Chart title in pixels

    Returns Point

  • Invalidate numeric values associated with each region of the Map using a callback function that is called for every region.

    Region values can be used in conjuction with:

    • DataCursor:

    The values can be displayed when user puts the mouse above a region. Modify DataCursor parsing with setCursorResultTableFormatter

    • FillStyle:

    Each region can be styled based on its assigned value, by setting the MapCharts' fill style to a PalettedFill.

    Example usage:

     // Example, Set a random value [0, 100] for each region.
    MapChart.invalidateRegionValues( ( region, prev ) => Math.random() * 100 )

    In a more realistic application, you would look up a value from an external data set based on the region. The properties available from region are based on the used MapType, see MapTypeRegionProperties for a list of supported properties.

     // Example, invalidate region values by external data set.
    fetch(...)
    .then((data) => {
    MapChart.invalidateRegionValues((region) => {
    // Look up value for `region`.
    const value = data[region.name]
    return value || 0
    })
    })

    Returns

    MapChart itself.

    Parameters

    • callback: ((region: MapTypeRegionProperties[SelectedMapType], prev?: number) => undefined | number)

      Function that is called for each region. First parameter is a region data structure, that can be used to identify each region. Second parameter is the previous value if any.

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Invalidate numeric values associated with each region of the Map using an Array of identifier-value objects.

    Region values can be used in conjuction with:

    • DataCursor:

    The values can be displayed when user puts the mouse above a region. Modify DataCursor parsing with setCursorResultTableFormatter

    • FillStyle:

    Each region can be styled based on its assigned value, by setting the MapCharts' fill style to a PalettedFill

    Example usage:

    • Select region by name or other property supported by the used MapTypes.
     MapChart.invalidateRegionValues([
    { value: 0, name: 'Finland' }
    ])

    In place of 'name', any property supported by the used MapType can be supplied. Look up MapTypeRegionProperties for a map of supported properties per MapType.

     // MapTypes that plot *Countries* (for example, 'World', 'Europe') also support 'ISO_A3' country codes.
    MapChart.invalidateRegionValues([
    { value: 0, ISO_A3: 'FIN' }
    ])
    • For quick access, you can also refer to the region list of the used MapType that is accessed through MapRegions.
     MapChart.invalidateRegionValues([
    { value: 0, ...MapRegions[ MapTypes.World ].Finland }
    ])

    Returns

    MapChart itself.

    Parameters

    • values: (undefined | Partial<MapTypeRegionProperties[SelectedMapType]> & {
          value: number;
      })[]

      Array of identifier-value objects.

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Remove subscription from mouse-click event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from mouse-doubleClick event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from mouse-down event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from mouse-drag event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from mouse-dragStart event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from mouse-dragStop event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from mouse-enter event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from mouse-leave event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from mouse-move event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from touch-start event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from mouse-up event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from mouse-wheel event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from touch-end event on Panel background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • Remove subscription from touch-move event on Chart background

    Returns

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

    Parameters

    • token: Token

      Event listener

    Returns boolean

  • 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

  • Remove event listener from Map Data Ready 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 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 resize 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 View Change 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

  • Subscribe to mouse-click event on Chart background

    Parameters

    Returns Token

  • Subscribe to mouse-down event on Chart background

    Parameters

    Returns Token

  • Subscribe to mouse-enter event on Chart background

    Parameters

    Returns Token

  • Subscribe to mouse-leave event on Chart background

    Parameters

    Returns Token

  • Subscribe to mouse-move event on Chart background

    Parameters

    Returns Token

  • Subscribe to mouse-up event on Chart background

    Parameters

    Returns Token

  • Subscribe to touch-end event on Chart background

    Parameters

    Returns Token

  • Subscribe to touch-move event on Chart background

    Parameters

    Returns Token

  • Subscribe to touch-start event on Chart background

    Parameters

    Returns Token

  • Subscribe onDispose event. This event is triggered whenever the Control (Dashboards and all chart types) is disposed.

     // Example usage

    Chart.onDispose(() => {
    console.log('chert was disposed')
    })

    Chart.dispose()

    Returns

    Token of subscription

    Parameters

    • handler: ((object: MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>) => unknown)

      Handler function for event

        • (object: MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>): unknown
        • Parameters

          • object: MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

          Returns unknown

    Returns Token

  • Add event listener to Map Data Ready.

    If map data is ready when event is attached the callback will be called on the next JS event loop cycle.

    Returns

    Token of the event listener

    Parameters

    • clbk: (() => void)

      Event listener for Map Data Ready Event

        • (): void
        • Returns void

    Returns Token

  • Add event listener to Mouse Click Event

    Returns

    Token of the event listener

    Parameters

    Returns Token

  • Add event listener to Mouse Double Click Event

    Returns

    Token of the event listener

    Parameters

    Returns Token

  • Add event listener to Mouse Down Event

    Returns

    Token of the event listener

    Parameters

    Returns Token

  • Subscribe to Mouse Drag event

    Parameters

    Returns Token

  • Subscribe to Mouse Drag Start event

    Parameters

    Returns Token

  • Subscribe to Mouse Drag Stop event

    Parameters

    Returns Token

  • Add event listener to Enter Event

    Returns

    Token of the event listener

    Parameters

    Returns Token

  • Add event listener to Mouse Leave Event

    Returns

    Token of the event listener

    Parameters

    Returns Token

  • Add event listener to Mouse Move Event

    Returns

    Token of the event listener

    Parameters

    Returns Token

  • Add event listener to Mouse Up Event

    Returns

    Token of the event listener

    Parameters

    Returns Token

  • Subscribe to Mouse Wheel event

    Returns

    Token of subscription

    Parameters

    Returns Token

  • Subscribe to resize event. This event is triggered whenever the area of chart changes (due to document or dashboard resizing).

     // Example usage,
    ChartXY.onResize((chart, width, height, engineWidth, engineHeight) => {
    console.log('Chart resized', 'width', width, 'height', height, 'engineWidth', engineWidth, 'engineHeight', engineHeight)
    })

    Returns

    Token of subscription

    Parameters

    • handler: ((obj: this, width: number, height: number, engineWidth: number, engineHeight: number) => void)

      Handler function for event

        • (obj: this, width: number, height: number, engineWidth: number, engineHeight: number): void
        • Parameters

          • obj: this
          • width: number
          • height: number
          • engineWidth: number
          • engineHeight: number

          Returns void

    Returns Token

  • Subscribe to Touch End event

    Returns

    Token of subscription

    Parameters

    • clbk: TouchEventHandler<MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>>

      Event handler function

    Returns Token

  • Subscribe to Touch Move event

    Returns

    Token of subscription

    Parameters

    • clbk: TouchEventHandler<MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>>

      Event handler function

    Returns Token

  • Subscribe to Touch Start event

    Returns

    Token of subscription

    Parameters

    • clbk: TouchEventHandler<MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>>

      Event handler function

    Returns Token

  • Subscribe to on View Change event.

    This event is triggered when the geographical view of the Map chart is changed as a side effect of chart resize, padding change, or other reason.

    It is also fired when the Map chart is first displayed.

    The view change event can be used for aligning other geographically positioned components over the Map chart. Mainly, it is designed for convenience of usage with ChartXY that is laid over a MapChart.

    See our Interactive Examples gallery for examples of this.

     // Example syntax.
    mapChart.onViewChange((view) => {
    console.log(view)
    })

    Returns

    Token of the event listener

    Parameters

    Returns Token

  • 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 MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Disable/Enable all animations of the Chart.

    Returns

    Chart itself for fluent interface.

    Parameters

    • animationsEnabled: undefined | boolean

      Boolean value to enable or disable animations.

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Mutator function for charts auto cursor.

    Returns

    Object itself for fluent interface

    Parameters

    • mutator: Mutator<CursorType>

      Mutator function for a Cursor

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set mode of charts Auto cursor

    Returns

    Object itself for fluent interface

    Parameters

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • 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 MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set LineStyle of chart background border stroke.

     // Example usage,
    ChartXY.setBackgroundStrokeStyle(new SolidLine({
    thickness: 2,
    fillStyle: new SolidFill({ color: ColorRGBA( 0, 255, 0 ) })
    }))

    Related API:

    • Use SolidLine to describe a solid line style.
    • 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].

    Returns

    Object itself

    Parameters

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set ResultTable formatter. Can be used to specify the information that is displayed, when hovering mouse/pointer over a Map region.

    Example usage:

    • Display country name and ISO_A3 code.
     MapChart.setCursorResultTableFormatter( ( tableContentBuilder, mapRegion, mapRegionValue, longitude, latitude, mapChart ) => tableContentBuilder
    .addRow( mapRegion.name )
    .addRow( mapRegion.ISO_A3 )
    )

    Returns

    Object itself

    Parameters

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • 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 MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set Fill Style of Map regions.

    Example usage:

    SolidFill:

    All Map regions are filled with a single color.

     // Example, solid color MapChart.
    MapChart.setFillStyle(new SolidFill({ color: ColorRGBA(255, 0, 0) }))

    PalettedFill:

    Each Map region is colored with an individual color. Coloring basis is further based on lookUpProperty of the PalettedFill:

    lookUpProperty: 'value':

    Each region is colored with a solid color that is looked up from the attached LUT by the active value of that region, as configured with invalidateRegionValues method.

     // Example, MapChart color look-up based on region values.
    const mapChart = lightningChart().Map({
    type: MapTypes.Europe
    })
    mapChart.setFillStyle(new PalettedFill({
    lookUpProperty: 'value',
    lut: new LUT({
    interpolate: true,
    steps: [
    { value: 0, color: ColorRGBA(0, 0, 0) },
    { value: 100, color: ColorRGBA(0, 255, 0) }
    ]
    })
    }))
    // Assign value for "Finland" region.
    mapChart.invalidateRegionValues([{ value: 100, ISO_A3: 'FIN' }])

    lookUpProperty: 'x' | 'y':

    Each pixel color of the map is looked up from the attached LUT by the respective longitude ('x'), or latitude ('y') coordinate.

     // Example, MapChart color look-up based on longitude.
    const mapChart = lightningChart().Map({
    type: MapTypes.Europe
    })
    mapChart.setFillStyle(new PalettedFill({
    lookUpProperty: 'x',
    lut: new LUT({
    interpolate: false,
    steps: [
    { value: -180, color: ColorRGBA(0, 0, 0) },
    { value: 20, color: ColorRGBA(0, 255, 0) },
    { value: 32, color: ColorRGBA(0, 0, 0) },
    ]
    })
    }))

    LinearGradientFill:

    Each pixel color of the map is colored according to a linear gradient.

     // Example, color MapChart with linear gradient.
    MapChart.setFillStyle(new LinearGradientFill({
    angle: 45,
    stops: [
    { offset: 0.0, color: ColorRGBA(255, 0, 0) },
    { offset: 1.0, color: ColorRGBA(0, 255, 0) }
    ]
    }))

    RadialGradientFill:

    Each pixel color of the map is colored according to a radial gradient.

     // Example, color MapChart with radial gradient.
    MapChart.setFillStyle(new RadialGradientFill({
    position: { x: 0.8, y: 0.7 },
    stops: [
    { offset: 0.0, color: ColorRGBA(255, 0, 0) },
    { offset: 1.0, color: ColorRGBA(0, 0, 255) }
    ]
    }))

    emptyFill:

    Map regions are not filled.

    Returns

    MapChart itself.

    Parameters

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set mouse interactions enabled or disabled.

    Disabling mouse interactions will also disable auto-cursor and triggering of events such as: onMouseClick, onMouseMove.

    Disabling mouse interactions can have a positive impact on performance.

    Returns

    Object itself for fluent interface

    Parameters

    • state: boolean

      Specifies state of mouse interactions

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set FillStyle of outlier regions (parts of map that are visible, but not interactable with active map type).

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

    Returns

    Object itself

    Parameters

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set LineStyle of outlier regions (parts of map that are visible, but not interactable with active map type).

     // Example usage,
    MapChart.setOutlierRegionStrokeStyle(new SolidLine({
    thickness: 2,
    fillStyle: new SolidFill({ color: ColorRGBA(255, 0, 0) })
    }))

    Returns

    Object itself

    Parameters

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • 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 MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set FillStyle of separate regions, which are visual components surrounding areas such as Alaska and Hawaii.

    Separate regions are present in following Map types:

    • MapTypes.USA
     // Example usage,
    MapChart.setSeparateRegionFillStyle(new SolidFill({ color: ColorRGBA( 80, 0, 0 ) }))

    Returns

    Object itself

    Parameters

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set LineStyle of Separate regions, which are visual components surrounding areas such as Alaska and Hawaii.

    Separate regions are present in following Map types:

    • MapTypes.USA
     // Example usage,
    MapChart.setSeparateRegionStrokeStyle(new SolidLine({
    thickness: 2,
    fillStyle: new SolidFill({ color: ColorRGBA(255, 0, 0) })
    }))

    Returns

    Object itself

    Parameters

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set Stroke style of Map regions.

    Example usage:

    SolidLine:

    All Map regions edges are drawn with a stroke.

     // Example, solid region stroke
    MapChart.setStrokeStyle(new SolidLine({
    thickness: 2,
    fillStyle: new SolidFill({ color: ColorRGBA(255, 0, 0) })
    }))

    emptyLine:

    Regions edges are not drawn with a stroke.

    Returns

    Object itself

    Parameters

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set text of Chart title.

    Returns

    Object itself for fluent interface.

    Parameters

    • title: string

      Chart title as a string.

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • 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 MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set fill style of Chart Title.

    Example usage:

    // Create a new style
    Chart.setTitleFillStyle(new SolidFill({ color: ColorHEX('#F00') }))
    // Change transparency
    Chart.setTitleFillStyle((solidFill) => solidFill.setA(80))
    // Set hidden
    Chart.setTitleFillStyle(emptyFill)

    Returns

    Chart itself

    Parameters

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set font of Chart Title.

    Example usage:

    // Create a new FontSettings
    Chart.setTitleFont(new FontSettings({ size: 24, style: 'italic' }))
    // Change existing settings
    Chart.setTitleFont((fontSettings) => fontSettings.setWeight('bold'))

    Returns

    Chart itself

    Parameters

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Specifies padding after chart title.

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

     // 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 MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>

  • Set rotation of Chart title.

    Returns

    Object itself

    Parameters

    • value: number

      Rotation in degrees

    Returns MapChart<SelectedMapType, CursorPointMarkerType, CursorResultTableBackgroundType, CursorType>