I have a very simple D3 example that first reads data into an associative array, then displays it in a bar graph.
I can\'t seem to get anything to display using this met
You can use the functions d3.values or d3.entries to work directly with associative arrays. You simply need to take it into account in the functions that set attributes (e.g. function(d) { return d.value; }).
function(d) { return d.value; }