variable scope in d3 javascript

Because d3 requests (like d3.json) are asynchronous, it’s best practice to wrap all of the code dependent on your external request within the request callback, ensuring that this code has access to the data before executing. From the D3 docs: “When loading data asynchronously, code that depends on the loaded data should generally exist within the callback function.”

So one option is to put all of your code within the callback function. If you’d like to separate the code into parts, you can also pass the response from your request to a separate function, something like this:

function myFunc(data) {
    console.log(data);
}

d3.json('file.json', function (data) {
    var json = data;
    myFunc(json);
});

Leave a Comment