D3.JS 5 Adds Promises
Written by Kay Ewbank   
Monday, 26 March 2018

There's a new version of D3.js, the JavaScript library for manipulating documents based on data. The new release adds support for promises instead of asynchronous callbacks to load data.

D3 provides a way to work with data using HTML, SVG, and CSS. Its use of standard web techniques avoids the need for a proprietary framework. The library offers data visualization components and a data-driven approach to DOM manipulation. The data display elements can be used to create graphs, interactive graphics, data-based maps, and information dashboards.

Data can be displayed as bubbles

The main change to the new version of D3 is that it now uses promises rather than asynchronous callbacks to load data. Promises simplify the structure of asynchronous code, especially in modern browsers that support async and await. The change to using promises means D3 now uses the Fetch API instead of XMLHttpRequest. Fetch supports a number of new features, such as streaming responses. These give you access to sections of the data as they are available rather than forcing the app to wait until the entire set of data is generated.

Another change to the new version is that D3 no longer provides the twenty-color categorical color schemes. These could cause problems because their grouped design could falsely imply relationships in the data. When data points share a hue, the user can interpret that as being a group, and changes in lightness can imply order. D3 has changed to use d3-scale-chromatic, which implements schemes from ColorBrewer that the developers describe as 'excellent'. The schemes this provides include categorical, diverging, sequential single-hue and sequential multi-hue schemes. These schemes are available in both discrete and continuous variants.

The final main change in the new version is the addition of implementations of marching squares and density estimation via d3-contour. The implementation includes methods for inserting clones of the selected nodes, and for creating detached elements. Geographic projections now support projection.angle, which has enabled several new polyhedral projections.

d3jslogo 

More Information

D3.js Website

Related Articles

Talking About Languages

D3.js By Example

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner


Ingres vs Postgres MVCC Explained With Neo4j's LLM Knowledge Graph Builder
14/04/2025

LLM Knowledge Graph Builder is an application designed to turn
unstructured data such as pdfs, text documents, YouTube videos, and web pages, into a knowledge graph stored in Neo4j, promising much bet [ ... ]



JetBrains Junie and AI Assistant Expand Reach
24/04/2025

All JetBrains AI tools, including the coding agent Junie and its  improved AI Assistant are now available within its IDEs under a single subscription and come with a free tier.


More News

espbook

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Monday, 26 March 2018 )