fixed NVD-325 and UI-34

master-patched
Tyler Wolf 12 years ago
parent f374c9a527
commit e28726e2de

@ -8057,7 +8057,16 @@ nv.models.scatter = function() {
if (clipVoronoi) {
defsEnter.append('clipPath').attr('id', 'nv-points-clip-' + id);
var pointClipsEnter = nv.log('DEFS', wrap.select('defs')).selectAll('.nv-point-clips')
.data([id])
.enter();
pointClipsEnter.append('clipPath')
.attr('class', 'nv-point-clips')
.attr('id', 'nv-points-clip-' + id);
var pointClips = wrap.select('#nv-points-clip-' + id).selectAll('circle')
.data(vertices);

4
nv.d3.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save