Rebuilding nv.d3.js
This commit is contained in:
parent
6dd18cdcee
commit
d978f38436
9
nv.d3.js
9
nv.d3.js
@ -2220,18 +2220,17 @@ nv.models.cumulativeLineChart = function() {
|
|||||||
|
|
||||||
//------------------------------------------------------------
|
//------------------------------------------------------------
|
||||||
// Setup containers and skeleton of chart
|
// Setup containers and skeleton of chart
|
||||||
var foregroundPointerEvents = (useInteractiveGuideline) ? "none" : "all";
|
|
||||||
|
|
||||||
var wrap = container.selectAll('g.nv-wrap.nv-cumulativeLine').data([data]);
|
var wrap = container.selectAll('g.nv-wrap.nv-cumulativeLine').data([data]);
|
||||||
var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-cumulativeLine').append('g');
|
var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-cumulativeLine').append('g');
|
||||||
var g = wrap.select('g');
|
var g = wrap.select('g');
|
||||||
|
|
||||||
gEnter.append('g').attr('class', 'nv-interactive');
|
gEnter.append('g').attr('class', 'nv-interactive');
|
||||||
gEnter.append('g').attr('class', 'nv-x nv-axis').style("pointer-events",foregroundPointerEvents);
|
gEnter.append('g').attr('class', 'nv-x nv-axis').style("pointer-events","none");
|
||||||
gEnter.append('g').attr('class', 'nv-y nv-axis').style("pointer-events",foregroundPointerEvents);
|
gEnter.append('g').attr('class', 'nv-y nv-axis');
|
||||||
gEnter.append('g').attr('class', 'nv-background');
|
gEnter.append('g').attr('class', 'nv-background');
|
||||||
gEnter.append('g').attr('class', 'nv-linesWrap').style("pointer-events",foregroundPointerEvents);
|
gEnter.append('g').attr('class', 'nv-linesWrap');
|
||||||
gEnter.append('g').attr('class', 'nv-avgLinesWrap').style("pointer-events",foregroundPointerEvents);
|
gEnter.append('g').attr('class', 'nv-avgLinesWrap').style("pointer-events","none");
|
||||||
gEnter.append('g').attr('class', 'nv-legendWrap');
|
gEnter.append('g').attr('class', 'nv-legendWrap');
|
||||||
gEnter.append('g').attr('class', 'nv-controlsWrap');
|
gEnter.append('g').attr('class', 'nv-controlsWrap');
|
||||||
|
|
||||||
|
12
nv.d3.min.js
vendored
12
nv.d3.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user