enplore / nvd3-charts

Custom charts for nvd3
The Unlicense
20 stars 6 forks source link

Error in radarChart.js causing overdraw. #9

Open pdsparks opened 6 years ago

pdsparks commented 6 years ago

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]);