LightningChart JS v.4.2 has been released!
Introducing new Developers’ Documentation, Polar heatmaps, improvements for Bar charts, and more!
Polar Heatmaps
Polar charts feature new series types which allow visualizing heatmaps within a polar coordinate system. This type of Polar chart is commonly used in the defense industry. Some key characteristics of the Polar Heatmaps are:
- Processing up to 4 million data points
- Super fast loading speed and CPU-efficient real-time updates
- 100 ms to fully show the heatmap populated with all the data
- Built-in data cursor feature
- Bilinear color interpolation between data points
JavaScript Real-Time Polar Sensor Chart
JavaScript Polar Radar Heatmap Chart
JavaScript Polar Heatmap Chart
Bar Charts
Bar charts are extensively used for visualizing categorical data and are considered a universal type of chart in different industries and applications. Bar charts are significantly used in Business Intelligence (BI) applications due to their effectiveness and simplicity in representing and analyzing data.
In this release, we’re introducing several features for our JavaScript bar charts, including:
- A convenient API that requires minimal configuration
- To create an interactive bar chart, simply plug in categorical data
- Built-in functions
- DataCursor
- Sorting
- Animations
- Overlapping label hiding
- Supports real-time data input
- Different configuration options for label placement and display
- Custom events can be added for drill-drown or extended cursor functionality
- High-performance
- Supports visualization of a few to hundreds of bar charts at top-performance
- Fully-customizable styling options
- Possible to override the default visual appearance
JavaScript Racing Bar Chart
Vertical Bar Chart
Horizontal Bar Chart of Different Global Temperatures
Coordinate Translations
LightningChart JS v.4.2 introduces coordinate translations: a new API for translating between screen coordinates, even locations, and axis coordinates. This mainly enables a variety of important functions:
- Finds the user’s interactions location along the Axes. For instance, clicking to add a data point.
- Positioning external HTML content at an Axis location. Essentially, this allows you to connect any front-end framework component to LightningChart and its Axes.
const locationAxis = {x: Date.now(), y:0}
const locationClient = chart.translateCoordinate(locationAxis, chart.axes, chart.client)
console.log(locationClient)
//
chart.onSeriesBackgroundMouseClick((_, event) -> {
const locationAxis = chart.translateCoordinate(event, chart.axes)
console.log(locationAxis)
})
Developer Documentation
For this release, we decided to focus on improving how users learn LightningChart JS. Starting from v.4.2, you can find all developer-oriented instructions, guides, and tutorials in one place: the LightningChart JS Dev Docs. The documentation contains several resources including:
- A Getting Started guide
- Installation guide
- Dedicated guides on over 40 primary and advanced topics
Get started with LightningChart JS v.4.2
If you’re still using a previous version of LightningChart JS, easily migrate to LightningChart JS v.4.2 by checking out the migration guide 4.2.
See more news
Which JavaScript Chart Library Do AI Coding Agents Actually Recommend, and Does It Matter?
In this article Why AI coding agents have strong library preferences What the defaults actually are (and the data behind them) When the defaults work fine When they quietly fail you What to do instead: giving your agent better information The keyword angle nobody is...
How to Set Up LightningChart JS in Cursor and Claude Code Using MCP, in Under 5 Minutes
A step-by-step guide to installing the LightningChart JS MCP server so your AI coding agent stops hallucinating chart APIs and starts writing production-ready code from the first prompt. AI coding agents are good at writing chart code. They are less good at writing...
The LightningChart JS Agent Skill: Give Any AI Coding Agent Accurate Charting Knowledge in 60 Seconds
An agent skill is a folder of instructions your AI coding tool picks up automatically. This one teaches any compatible agent how to use LightningChart JS correctly, before it writes a single line of chart code. Agent skills are a relatively new concept and the...
Why AI Coding Agents Get Data Visualization Wrong, and What to Do About It
AI coding assistants are getting good at most parts of application development. Data visualization is one of the areas where they still have a consistent, predictable failure mode. This article explains the mechanics of why it happens and the practical fix. I spent a...

