radarChart.js contains an error that results in any chart redrawing itself entirely for every Key: in the data set. This slows things somewhat and leaves the chart looking unappealing when more than one key is present.
I have highlighted the line position and included the fix: wrapping the 'data' reference in square brackets.
100 var wrap = container.selectAll('g.nv-wrap.nv-radarChart').data(data);
FIX:
100 var wrap = container.selectAll('g.nv-wrap.nv-radarChart').data([data]);
radarChart.js contains an error that results in any chart redrawing itself entirely for every
Key:
in the data set. This slows things somewhat and leaves the chart looking unappealing when more than one key is present.I have highlighted the line position and included the fix: wrapping the 'data' reference in square brackets.
FIX: