d3plus / d3plus-viz

Abstract ES6 class that drives d3plus visualizations.
MIT License
7 stars 2 forks source link

maintain URL loading order for data formatter #131

Closed davelandry closed 5 years ago

davelandry commented 5 years ago

For example, if I have 2 URLs:

.data(["url-1", "url-2"])

Depending on which URL finishes first, the resp array in the dataFormat currently gets either [data1, data2] or [data2, data1].