Hi all,
I have a JSON object that I want to load for D3 to use. Statically it works, it populates the graph perfectly. Now with jquery I want to load and asynchronously change two values in that object with a slider.
Code:
{
"baseball_players": {
"year": '1999',
"stat": 'RBI'
}
}
Also do I add this to the d3.json or the jquery function? Thanks!