A trick to make your big dataviz load super fast
Big datasets are fun. The bigger, the better, especially when you let people explore them live in their browser.
But thereās a catch: big datasets are slow to load.
Even with modern content delivery networks (CDNs), gzip compression, and high internet speeds, it can take a few seconds to load and parse a dataset. In my H1B salaries visualization, downloading data takes 1.7 seconds, parsing takes another 2 seconds, and rendering takes maybe a full second because some things are done stupidly.
Thatās a full 4 to 5 seconds before a user sees anything more than a "Loading, please waitā message. Users are going to leave before they play with your dataset. Yes, even though itās so cool and the data is amazing and awesome, users donāt give a shit. Itās sad. ā¹ļø
But thereās a trick to keep them around ā show them an image first!
Check this out:
See how you barely notice the page refresh? Thatās on purpose.
The main App.render() method is wrapped in a conditional statement that checks if the data is available. If it is, then we render the interactive visualization; if it isnāt, then we render a screenshot and default descriptions.
// src/App.js
render() {
if (this.state.techSalaries.length < 1) {
return (
<preloader>
);
}
// render the main dataviz
}
</preloader>
The Preloader component can be a functional stateless component, like this:
// src/App.js
import StaticViz from './preloading.png';
const Preloader = () => (
<div class="App container">
<h1>The average H1B in tech pays $86,164/year</h1>
<p class="lead">Since 2012 the US tech industry has sponsored 176,075 H1B work visas. Most of them paid <b>$60,660 to $111,668</b> per year (1 standard deviation). <span>The best city for an H1B is <b>Kirkland, WA</b> with an average individual salary <b>$39,465 above local household median</b>. Median household salary is a good proxy for cost of living in an area.</span></p>
<img src={StaticViz} style="{{width:" '100%'}}="">
<h2 class="text-center">Loading data ...</h2>
</div>
);
The Preloader component mimics the structure of your normal dataviz, but itās hardcoded. The information is real, and itās what people are looking for, but it doesnāt need the dataset to render.
The easiest way to get this is to first build your real dataviz, then screenshot the picture, and then copy-paste the descriptions if theyāre dynamic. Without dynamic descriptions, half your job is done already.
Thatās about it, really:
- render an image
- wait for data to load
- replace image with dynamic dataviz
It sounds dumb, but increases user satisfaction 341324%.
If it works ā¦
Filed under: FrontendTechnical



