Created scatterplotChart and example
This commit is contained in:
parent
bfcdae6dde
commit
601d598b34
1
Makefile
1
Makefile
@ -25,6 +25,7 @@ JS_FILES = \
|
|||||||
src/models/multiBarHorizontalWithLegend.js \
|
src/models/multiBarHorizontalWithLegend.js \
|
||||||
src/models/pie.js \
|
src/models/pie.js \
|
||||||
src/models/scatter.js \
|
src/models/scatter.js \
|
||||||
|
src/models/scatterChart.js \
|
||||||
src/models/scatterWithLegend.js \
|
src/models/scatterWithLegend.js \
|
||||||
src/models/sparkline.js \
|
src/models/sparkline.js \
|
||||||
src/models/sparklinePlus.js \
|
src/models/sparklinePlus.js \
|
||||||
|
95
examples/scatterChart.html
Normal file
95
examples/scatterChart.html
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
|
||||||
|
<link href="../src/d3.css" rel="stylesheet" type="text/css">
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body {
|
||||||
|
overflow-y:scroll;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
svg {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
div {
|
||||||
|
border: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#offsetDiv {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#test1 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="offsetDiv">
|
||||||
|
<div id="test1" class="chartWrap">
|
||||||
|
<svg></svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="../lib/d3.v2.js"></script>
|
||||||
|
<script src="../nv.d3.js"></script>
|
||||||
|
<script src="../src/tooltip.js"></script>
|
||||||
|
<script src="../src/models/legend.js"></script>
|
||||||
|
<script src="../src/models/axis.js"></script>
|
||||||
|
<script src="../src/models/scatter.js"></script>
|
||||||
|
<script src="../src/models/scatterChart.js"></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//Format A
|
||||||
|
nv.addGraph(function() {
|
||||||
|
var chart = nv.models.scatterChart()
|
||||||
|
.showDistX(true)
|
||||||
|
.showDistY(true)
|
||||||
|
.color(d3.scale.category10().range());
|
||||||
|
|
||||||
|
chart.xAxis.tickFormat(d3.format('.02f'))
|
||||||
|
chart.yAxis.tickFormat(d3.format('.02f'))
|
||||||
|
|
||||||
|
d3.select('#test1 svg')
|
||||||
|
.datum(randomData())
|
||||||
|
.transition().duration(500)
|
||||||
|
.call(chart);
|
||||||
|
|
||||||
|
nv.utils.windowResize(chart.update);
|
||||||
|
|
||||||
|
return chart;
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
function randomData() {
|
||||||
|
var data = [],
|
||||||
|
random = d3.random.normal();
|
||||||
|
|
||||||
|
for (i = 0; i < 2; i++) {
|
||||||
|
data.push({
|
||||||
|
key: 'Group ' + i,
|
||||||
|
values: []
|
||||||
|
});
|
||||||
|
|
||||||
|
for (j = 0; j < 100; j++) {
|
||||||
|
data[i].values.push({x: random(), y: random(), size: Math.random()});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
312
nv.d3.js
312
nv.d3.js
@ -5783,6 +5783,316 @@ nv.models.scatter = function() {
|
|||||||
return chart;
|
return chart;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nv.models.scatterChart = function() {
|
||||||
|
var margin = {top: 30, right: 20, bottom: 50, left: 60},
|
||||||
|
width = null,
|
||||||
|
height = null,
|
||||||
|
color = d3.scale.category20().range(),
|
||||||
|
showDistX = false,
|
||||||
|
showDistY = false,
|
||||||
|
showLegend = true,
|
||||||
|
tooltips = true,
|
||||||
|
tooltip = function(key, x, y, e, graph) {
|
||||||
|
return '<h3>' + key + '</h3>' +
|
||||||
|
'<p>' + y + ' at ' + x + '</p>'
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
var scatter = nv.models.scatter(),
|
||||||
|
x = scatter.xScale(),
|
||||||
|
y = scatter.yScale(),
|
||||||
|
xAxis = nv.models.axis().orient('bottom').scale(x).tickPadding(10),
|
||||||
|
yAxis = nv.models.axis().orient('left').scale(y).tickPadding(10),
|
||||||
|
legend = nv.models.legend().height(30),
|
||||||
|
dispatch = d3.dispatch('tooltipShow', 'tooltipHide'),
|
||||||
|
x0, y0; //TODO: abstract distribution component and have old scales stored there
|
||||||
|
|
||||||
|
var showTooltip = function(e, offsetElement) {
|
||||||
|
//console.log('left: ' + offsetElement.offsetLeft);
|
||||||
|
//console.log('top: ' + offsetElement.offsetLeft);
|
||||||
|
|
||||||
|
//TODO: FIX offsetLeft and offSet top do not work if container is shifted anywhere
|
||||||
|
//var offsetElement = document.getElementById(selector.substr(1)),
|
||||||
|
var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ),
|
||||||
|
top = e.pos[1] + ( offsetElement.offsetTop || 0),
|
||||||
|
x = xAxis.tickFormat()(scatter.x()(e.point)),
|
||||||
|
y = yAxis.tickFormat()(scatter.y()(e.point)),
|
||||||
|
content = tooltip(e.series.key, x, y, e, chart);
|
||||||
|
|
||||||
|
nv.tooltip.show([left, top], content, e.value < 0 ? 'n' : 's');
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
function chart(selection) {
|
||||||
|
selection.each(function(data) {
|
||||||
|
|
||||||
|
//TODO: decide if this makes sense to add into all the models for ease of updating (updating without needing the selection)
|
||||||
|
chart.update = function() { selection.transition().call(chart) };
|
||||||
|
|
||||||
|
var container = d3.select(this);
|
||||||
|
|
||||||
|
var availableWidth = (width || parseInt(container.style('width')) || 960)
|
||||||
|
- margin.left - margin.right,
|
||||||
|
availableHeight = (height || parseInt(container.style('height')) || 400)
|
||||||
|
- margin.top - margin.bottom;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
x0 = x0 || scatter.xScale();
|
||||||
|
y0 = y0 || scatter.yScale();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
var wrap = container.selectAll('g.wrap.scatterWithLegend').data([data]);
|
||||||
|
var gEnter = wrap.enter().append('g').attr('class', 'wrap nvd3 scatterWithLegend').append('g');
|
||||||
|
|
||||||
|
gEnter.append('g').attr('class', 'legendWrap');
|
||||||
|
gEnter.append('g').attr('class', 'x axis');
|
||||||
|
gEnter.append('g').attr('class', 'y axis');
|
||||||
|
gEnter.append('g').attr('class', 'scatterWrap');
|
||||||
|
//gEnter.append('g').attr('class', 'distWrap');
|
||||||
|
|
||||||
|
var g = wrap.select('g')
|
||||||
|
|
||||||
|
if (showLegend) {
|
||||||
|
legend.width( availableWidth / 2 );
|
||||||
|
|
||||||
|
wrap.select('.legendWrap')
|
||||||
|
.datum(data)
|
||||||
|
.call(legend);
|
||||||
|
|
||||||
|
if ( margin.top != legend.height()) {
|
||||||
|
margin.top = legend.height();
|
||||||
|
availableHeight = (height || parseInt(container.style('height')) || 400)
|
||||||
|
- margin.top - margin.bottom;
|
||||||
|
}
|
||||||
|
|
||||||
|
wrap.select('.legendWrap')
|
||||||
|
.attr('transform', 'translate(' + (availableWidth / 2) + ',' + (-margin.top) +')');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
scatter
|
||||||
|
.width(availableWidth)
|
||||||
|
.height(availableHeight)
|
||||||
|
.color(data.map(function(d,i) {
|
||||||
|
return d.color || color[i % 20];
|
||||||
|
}).filter(function(d,i) { return !data[i].disabled }))
|
||||||
|
|
||||||
|
|
||||||
|
g.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')');
|
||||||
|
|
||||||
|
|
||||||
|
var scatterWrap = wrap.select('.scatterWrap')
|
||||||
|
.datum(data.filter(function(d) { return !d.disabled }));
|
||||||
|
d3.transition(scatterWrap).call(scatter);
|
||||||
|
|
||||||
|
|
||||||
|
xAxis
|
||||||
|
.ticks( availableWidth / 100 )
|
||||||
|
.tickSize( -availableHeight , 0);
|
||||||
|
|
||||||
|
g.select('.x.axis')
|
||||||
|
.attr('transform', 'translate(0,' + y.range()[0] + ')');
|
||||||
|
d3.transition(g.select('.x.axis'))
|
||||||
|
.call(xAxis);
|
||||||
|
|
||||||
|
|
||||||
|
yAxis
|
||||||
|
.ticks( availableHeight / 36 )
|
||||||
|
.tickSize( -availableWidth, 0);
|
||||||
|
|
||||||
|
d3.transition(g.select('.y.axis'))
|
||||||
|
.call(yAxis);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//TODO abstract Distribution into its own component
|
||||||
|
if ( showDistX || showDistY) {
|
||||||
|
var distWrap = scatterWrap.selectAll('g.distribution')
|
||||||
|
.data(function(d) { return d }, function(d) { return d.key });
|
||||||
|
|
||||||
|
distWrap.enter().append('g').attr('class', function(d,i) { return 'distribution series-' + i })
|
||||||
|
|
||||||
|
distWrap.style('stroke', function(d,i) { return color.filter(function(d,i) { return data[i] && !data[i].disabled })[i % 10] })
|
||||||
|
}
|
||||||
|
|
||||||
|
if (showDistX) {
|
||||||
|
var distX = distWrap.selectAll('line.distX')
|
||||||
|
.data(function(d) { return d.values })
|
||||||
|
distX.enter().append('line')
|
||||||
|
.attr('x1', function(d,i) { return x0(scatter.x()(d,i)) })
|
||||||
|
.attr('x2', function(d,i) { return x0(scatter.x()(d,i)) })
|
||||||
|
//d3.transition(distX.exit())
|
||||||
|
d3.transition(distWrap.exit().selectAll('line.distX'))
|
||||||
|
.attr('x1', function(d,i) { return x(scatter.x()(d,i)) })
|
||||||
|
.attr('x2', function(d,i) { return x(scatter.x()(d,i)) })
|
||||||
|
.remove();
|
||||||
|
distX
|
||||||
|
.attr('class', function(d,i) { return 'distX distX-' + i })
|
||||||
|
.attr('y1', y.range()[0])
|
||||||
|
.attr('y2', y.range()[0] + 8);
|
||||||
|
d3.transition(distX)
|
||||||
|
.attr('x1', function(d,i) { return x(scatter.x()(d,i)) })
|
||||||
|
.attr('x2', function(d,i) { return x(scatter.x()(d,i)) })
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (showDistY) {
|
||||||
|
var distY = distWrap.selectAll('line.distY')
|
||||||
|
.data(function(d) { return d.values })
|
||||||
|
distY.enter().append('line')
|
||||||
|
.attr('y1', function(d,i) { return y0(scatter.y()(d,i)) })
|
||||||
|
.attr('y2', function(d,i) { return y0(scatter.y()(d,i)) });
|
||||||
|
//d3.transition(distY.exit())
|
||||||
|
d3.transition(distWrap.exit().selectAll('line.distY'))
|
||||||
|
.attr('y1', function(d,i) { return y(scatter.y()(d,i)) })
|
||||||
|
.attr('y2', function(d,i) { return y(scatter.y()(d,i)) })
|
||||||
|
.remove();
|
||||||
|
distY
|
||||||
|
.attr('class', function(d,i) { return 'distY distY-' + i })
|
||||||
|
.attr('x1', x.range()[0])
|
||||||
|
.attr('x2', x.range()[0] - 8)
|
||||||
|
d3.transition(distY)
|
||||||
|
.attr('y1', function(d,i) { return y(scatter.y()(d,i)) }) .attr('y2', function(d,i) { return y(scatter.y()(d,i)) });
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
legend.dispatch.on('legendClick', function(d,i, that) {
|
||||||
|
d.disabled = !d.disabled;
|
||||||
|
|
||||||
|
if (!data.filter(function(d) { return !d.disabled }).length) {
|
||||||
|
data.map(function(d) {
|
||||||
|
d.disabled = false;
|
||||||
|
wrap.selectAll('.series').classed('disabled', false);
|
||||||
|
return d;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
selection.transition().call(chart)
|
||||||
|
});
|
||||||
|
|
||||||
|
/*
|
||||||
|
legend.dispatch.on('legendMouseover', function(d, i) {
|
||||||
|
d.hover = true;
|
||||||
|
selection.transition().call(chart)
|
||||||
|
});
|
||||||
|
|
||||||
|
legend.dispatch.on('legendMouseout', function(d, i) {
|
||||||
|
d.hover = false;
|
||||||
|
selection.transition().call(chart)
|
||||||
|
});
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
scatter.dispatch.on('elementMouseover.tooltip', function(e) {
|
||||||
|
scatterWrap.select('.series-' + e.seriesIndex + ' .distX-' + e.pointIndex)
|
||||||
|
.attr('y1', e.pos[1]);
|
||||||
|
scatterWrap.select('.series-' + e.seriesIndex + ' .distY-' + e.pointIndex)
|
||||||
|
.attr('x1', e.pos[0]);
|
||||||
|
|
||||||
|
e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top];
|
||||||
|
dispatch.tooltipShow(e);
|
||||||
|
});
|
||||||
|
if (tooltips) dispatch.on('tooltipShow', function(e) { showTooltip(e, container[0][0]) } ); // TODO: maybe merge with above?
|
||||||
|
|
||||||
|
scatter.dispatch.on('elementMouseout.tooltip', function(e) {
|
||||||
|
dispatch.tooltipHide(e);
|
||||||
|
|
||||||
|
scatterWrap.select('.series-' + e.seriesIndex + ' .distX-' + e.pointIndex)
|
||||||
|
.attr('y1', y.range()[0]);
|
||||||
|
scatterWrap.select('.series-' + e.seriesIndex + ' .distY-' + e.pointIndex)
|
||||||
|
.attr('x1', x.range()[0]);
|
||||||
|
});
|
||||||
|
if (tooltips) dispatch.on('tooltipHide', nv.tooltip.cleanup);
|
||||||
|
|
||||||
|
|
||||||
|
//store old scales for use in transitions on update, to animate from old to new positions, and sizes
|
||||||
|
x0 = x.copy();
|
||||||
|
y0 = y.copy();
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
return chart;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
chart.dispatch = dispatch;
|
||||||
|
chart.legend = legend;
|
||||||
|
chart.xAxis = xAxis;
|
||||||
|
chart.yAxis = yAxis;
|
||||||
|
|
||||||
|
d3.rebind(chart, scatter, 'interactive', 'size', 'xScale', 'yScale', 'zScale', 'xDomain', 'yDomain', 'sizeDomain', 'forceX', 'forceY', 'forceSize', 'clipVoronoi', 'clipRadius');
|
||||||
|
|
||||||
|
|
||||||
|
chart.margin = function(_) {
|
||||||
|
if (!arguments.length) return margin;
|
||||||
|
margin = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.width = function(_) {
|
||||||
|
if (!arguments.length) return width;
|
||||||
|
width = d3.functor(_);
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.height = function(_) {
|
||||||
|
if (!arguments.length) return height;
|
||||||
|
height = d3.functor(_);
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.color = function(_) {
|
||||||
|
if (!arguments.length) return color;
|
||||||
|
color = _;
|
||||||
|
legend.color(_);
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.showDistX = function(_) {
|
||||||
|
if (!arguments.length) return showDistX;
|
||||||
|
showDistX = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.showDistY = function(_) {
|
||||||
|
if (!arguments.length) return showDistY;
|
||||||
|
showDistY = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.showControls = function(_) {
|
||||||
|
if (!arguments.length) return showControls;
|
||||||
|
showControls = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.showLegend = function(_) {
|
||||||
|
if (!arguments.length) return showLegend;
|
||||||
|
showLegend = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.tooltips = function(_) {
|
||||||
|
if (!arguments.length) return tooltips;
|
||||||
|
tooltips = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.tooltipContent = function(_) {
|
||||||
|
if (!arguments.length) return tooltip;
|
||||||
|
tooltip = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
return chart;
|
||||||
|
}
|
||||||
|
|
||||||
nv.models.scatterWithLegend = function() {
|
nv.models.scatterWithLegend = function() {
|
||||||
var margin = {top: 30, right: 20, bottom: 50, left: 60},
|
var margin = {top: 30, right: 20, bottom: 50, left: 60},
|
||||||
width = function() { return 960 }, //TODO: should probably make this consistent... or maybe constant in the models, closure in the charts
|
width = function() { return 960 }, //TODO: should probably make this consistent... or maybe constant in the models, closure in the charts
|
||||||
@ -6975,7 +7285,7 @@ nv.models.stackedAreaChart = function() {
|
|||||||
|
|
||||||
if (showLegend) {
|
if (showLegend) {
|
||||||
legend
|
legend
|
||||||
.width(availableWidth/2 - margin.right);
|
.width( availableWidth / 2 );
|
||||||
|
|
||||||
g.select('.legendWrap')
|
g.select('.legendWrap')
|
||||||
.datum(data)
|
.datum(data)
|
||||||
|
4
nv.d3.min.js
vendored
4
nv.d3.min.js
vendored
File diff suppressed because one or more lines are too long
310
src/models/scatterChart.js
Normal file
310
src/models/scatterChart.js
Normal file
@ -0,0 +1,310 @@
|
|||||||
|
|
||||||
|
nv.models.scatterChart = function() {
|
||||||
|
var margin = {top: 30, right: 20, bottom: 50, left: 60},
|
||||||
|
width = null,
|
||||||
|
height = null,
|
||||||
|
color = d3.scale.category20().range(),
|
||||||
|
showDistX = false,
|
||||||
|
showDistY = false,
|
||||||
|
showLegend = true,
|
||||||
|
tooltips = true,
|
||||||
|
tooltip = function(key, x, y, e, graph) {
|
||||||
|
return '<h3>' + key + '</h3>' +
|
||||||
|
'<p>' + y + ' at ' + x + '</p>'
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
var scatter = nv.models.scatter(),
|
||||||
|
x = scatter.xScale(),
|
||||||
|
y = scatter.yScale(),
|
||||||
|
xAxis = nv.models.axis().orient('bottom').scale(x).tickPadding(10),
|
||||||
|
yAxis = nv.models.axis().orient('left').scale(y).tickPadding(10),
|
||||||
|
legend = nv.models.legend().height(30),
|
||||||
|
dispatch = d3.dispatch('tooltipShow', 'tooltipHide'),
|
||||||
|
x0, y0; //TODO: abstract distribution component and have old scales stored there
|
||||||
|
|
||||||
|
var showTooltip = function(e, offsetElement) {
|
||||||
|
//console.log('left: ' + offsetElement.offsetLeft);
|
||||||
|
//console.log('top: ' + offsetElement.offsetLeft);
|
||||||
|
|
||||||
|
//TODO: FIX offsetLeft and offSet top do not work if container is shifted anywhere
|
||||||
|
//var offsetElement = document.getElementById(selector.substr(1)),
|
||||||
|
var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ),
|
||||||
|
top = e.pos[1] + ( offsetElement.offsetTop || 0),
|
||||||
|
x = xAxis.tickFormat()(scatter.x()(e.point)),
|
||||||
|
y = yAxis.tickFormat()(scatter.y()(e.point)),
|
||||||
|
content = tooltip(e.series.key, x, y, e, chart);
|
||||||
|
|
||||||
|
nv.tooltip.show([left, top], content, e.value < 0 ? 'n' : 's');
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
function chart(selection) {
|
||||||
|
selection.each(function(data) {
|
||||||
|
|
||||||
|
//TODO: decide if this makes sense to add into all the models for ease of updating (updating without needing the selection)
|
||||||
|
chart.update = function() { selection.transition().call(chart) };
|
||||||
|
|
||||||
|
var container = d3.select(this);
|
||||||
|
|
||||||
|
var availableWidth = (width || parseInt(container.style('width')) || 960)
|
||||||
|
- margin.left - margin.right,
|
||||||
|
availableHeight = (height || parseInt(container.style('height')) || 400)
|
||||||
|
- margin.top - margin.bottom;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
x0 = x0 || scatter.xScale();
|
||||||
|
y0 = y0 || scatter.yScale();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
var wrap = container.selectAll('g.wrap.scatterWithLegend').data([data]);
|
||||||
|
var gEnter = wrap.enter().append('g').attr('class', 'wrap nvd3 scatterWithLegend').append('g');
|
||||||
|
|
||||||
|
gEnter.append('g').attr('class', 'legendWrap');
|
||||||
|
gEnter.append('g').attr('class', 'x axis');
|
||||||
|
gEnter.append('g').attr('class', 'y axis');
|
||||||
|
gEnter.append('g').attr('class', 'scatterWrap');
|
||||||
|
//gEnter.append('g').attr('class', 'distWrap');
|
||||||
|
|
||||||
|
var g = wrap.select('g')
|
||||||
|
|
||||||
|
if (showLegend) {
|
||||||
|
legend.width( availableWidth / 2 );
|
||||||
|
|
||||||
|
wrap.select('.legendWrap')
|
||||||
|
.datum(data)
|
||||||
|
.call(legend);
|
||||||
|
|
||||||
|
if ( margin.top != legend.height()) {
|
||||||
|
margin.top = legend.height();
|
||||||
|
availableHeight = (height || parseInt(container.style('height')) || 400)
|
||||||
|
- margin.top - margin.bottom;
|
||||||
|
}
|
||||||
|
|
||||||
|
wrap.select('.legendWrap')
|
||||||
|
.attr('transform', 'translate(' + (availableWidth / 2) + ',' + (-margin.top) +')');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
scatter
|
||||||
|
.width(availableWidth)
|
||||||
|
.height(availableHeight)
|
||||||
|
.color(data.map(function(d,i) {
|
||||||
|
return d.color || color[i % 20];
|
||||||
|
}).filter(function(d,i) { return !data[i].disabled }))
|
||||||
|
|
||||||
|
|
||||||
|
g.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')');
|
||||||
|
|
||||||
|
|
||||||
|
var scatterWrap = wrap.select('.scatterWrap')
|
||||||
|
.datum(data.filter(function(d) { return !d.disabled }));
|
||||||
|
d3.transition(scatterWrap).call(scatter);
|
||||||
|
|
||||||
|
|
||||||
|
xAxis
|
||||||
|
.ticks( availableWidth / 100 )
|
||||||
|
.tickSize( -availableHeight , 0);
|
||||||
|
|
||||||
|
g.select('.x.axis')
|
||||||
|
.attr('transform', 'translate(0,' + y.range()[0] + ')');
|
||||||
|
d3.transition(g.select('.x.axis'))
|
||||||
|
.call(xAxis);
|
||||||
|
|
||||||
|
|
||||||
|
yAxis
|
||||||
|
.ticks( availableHeight / 36 )
|
||||||
|
.tickSize( -availableWidth, 0);
|
||||||
|
|
||||||
|
d3.transition(g.select('.y.axis'))
|
||||||
|
.call(yAxis);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//TODO abstract Distribution into its own component
|
||||||
|
if ( showDistX || showDistY) {
|
||||||
|
var distWrap = scatterWrap.selectAll('g.distribution')
|
||||||
|
.data(function(d) { return d }, function(d) { return d.key });
|
||||||
|
|
||||||
|
distWrap.enter().append('g').attr('class', function(d,i) { return 'distribution series-' + i })
|
||||||
|
|
||||||
|
distWrap.style('stroke', function(d,i) { return color.filter(function(d,i) { return data[i] && !data[i].disabled })[i % 10] })
|
||||||
|
}
|
||||||
|
|
||||||
|
if (showDistX) {
|
||||||
|
var distX = distWrap.selectAll('line.distX')
|
||||||
|
.data(function(d) { return d.values })
|
||||||
|
distX.enter().append('line')
|
||||||
|
.attr('x1', function(d,i) { return x0(scatter.x()(d,i)) })
|
||||||
|
.attr('x2', function(d,i) { return x0(scatter.x()(d,i)) })
|
||||||
|
//d3.transition(distX.exit())
|
||||||
|
d3.transition(distWrap.exit().selectAll('line.distX'))
|
||||||
|
.attr('x1', function(d,i) { return x(scatter.x()(d,i)) })
|
||||||
|
.attr('x2', function(d,i) { return x(scatter.x()(d,i)) })
|
||||||
|
.remove();
|
||||||
|
distX
|
||||||
|
.attr('class', function(d,i) { return 'distX distX-' + i })
|
||||||
|
.attr('y1', y.range()[0])
|
||||||
|
.attr('y2', y.range()[0] + 8);
|
||||||
|
d3.transition(distX)
|
||||||
|
.attr('x1', function(d,i) { return x(scatter.x()(d,i)) })
|
||||||
|
.attr('x2', function(d,i) { return x(scatter.x()(d,i)) })
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (showDistY) {
|
||||||
|
var distY = distWrap.selectAll('line.distY')
|
||||||
|
.data(function(d) { return d.values })
|
||||||
|
distY.enter().append('line')
|
||||||
|
.attr('y1', function(d,i) { return y0(scatter.y()(d,i)) })
|
||||||
|
.attr('y2', function(d,i) { return y0(scatter.y()(d,i)) });
|
||||||
|
//d3.transition(distY.exit())
|
||||||
|
d3.transition(distWrap.exit().selectAll('line.distY'))
|
||||||
|
.attr('y1', function(d,i) { return y(scatter.y()(d,i)) })
|
||||||
|
.attr('y2', function(d,i) { return y(scatter.y()(d,i)) })
|
||||||
|
.remove();
|
||||||
|
distY
|
||||||
|
.attr('class', function(d,i) { return 'distY distY-' + i })
|
||||||
|
.attr('x1', x.range()[0])
|
||||||
|
.attr('x2', x.range()[0] - 8)
|
||||||
|
d3.transition(distY)
|
||||||
|
.attr('y1', function(d,i) { return y(scatter.y()(d,i)) }) .attr('y2', function(d,i) { return y(scatter.y()(d,i)) });
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
legend.dispatch.on('legendClick', function(d,i, that) {
|
||||||
|
d.disabled = !d.disabled;
|
||||||
|
|
||||||
|
if (!data.filter(function(d) { return !d.disabled }).length) {
|
||||||
|
data.map(function(d) {
|
||||||
|
d.disabled = false;
|
||||||
|
wrap.selectAll('.series').classed('disabled', false);
|
||||||
|
return d;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
selection.transition().call(chart)
|
||||||
|
});
|
||||||
|
|
||||||
|
/*
|
||||||
|
legend.dispatch.on('legendMouseover', function(d, i) {
|
||||||
|
d.hover = true;
|
||||||
|
selection.transition().call(chart)
|
||||||
|
});
|
||||||
|
|
||||||
|
legend.dispatch.on('legendMouseout', function(d, i) {
|
||||||
|
d.hover = false;
|
||||||
|
selection.transition().call(chart)
|
||||||
|
});
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
scatter.dispatch.on('elementMouseover.tooltip', function(e) {
|
||||||
|
scatterWrap.select('.series-' + e.seriesIndex + ' .distX-' + e.pointIndex)
|
||||||
|
.attr('y1', e.pos[1]);
|
||||||
|
scatterWrap.select('.series-' + e.seriesIndex + ' .distY-' + e.pointIndex)
|
||||||
|
.attr('x1', e.pos[0]);
|
||||||
|
|
||||||
|
e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top];
|
||||||
|
dispatch.tooltipShow(e);
|
||||||
|
});
|
||||||
|
if (tooltips) dispatch.on('tooltipShow', function(e) { showTooltip(e, container[0][0]) } ); // TODO: maybe merge with above?
|
||||||
|
|
||||||
|
scatter.dispatch.on('elementMouseout.tooltip', function(e) {
|
||||||
|
dispatch.tooltipHide(e);
|
||||||
|
|
||||||
|
scatterWrap.select('.series-' + e.seriesIndex + ' .distX-' + e.pointIndex)
|
||||||
|
.attr('y1', y.range()[0]);
|
||||||
|
scatterWrap.select('.series-' + e.seriesIndex + ' .distY-' + e.pointIndex)
|
||||||
|
.attr('x1', x.range()[0]);
|
||||||
|
});
|
||||||
|
if (tooltips) dispatch.on('tooltipHide', nv.tooltip.cleanup);
|
||||||
|
|
||||||
|
|
||||||
|
//store old scales for use in transitions on update, to animate from old to new positions, and sizes
|
||||||
|
x0 = x.copy();
|
||||||
|
y0 = y.copy();
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
return chart;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
chart.dispatch = dispatch;
|
||||||
|
chart.legend = legend;
|
||||||
|
chart.xAxis = xAxis;
|
||||||
|
chart.yAxis = yAxis;
|
||||||
|
|
||||||
|
d3.rebind(chart, scatter, 'interactive', 'size', 'xScale', 'yScale', 'zScale', 'xDomain', 'yDomain', 'sizeDomain', 'forceX', 'forceY', 'forceSize', 'clipVoronoi', 'clipRadius');
|
||||||
|
|
||||||
|
|
||||||
|
chart.margin = function(_) {
|
||||||
|
if (!arguments.length) return margin;
|
||||||
|
margin = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.width = function(_) {
|
||||||
|
if (!arguments.length) return width;
|
||||||
|
width = d3.functor(_);
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.height = function(_) {
|
||||||
|
if (!arguments.length) return height;
|
||||||
|
height = d3.functor(_);
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.color = function(_) {
|
||||||
|
if (!arguments.length) return color;
|
||||||
|
color = _;
|
||||||
|
legend.color(_);
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.showDistX = function(_) {
|
||||||
|
if (!arguments.length) return showDistX;
|
||||||
|
showDistX = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.showDistY = function(_) {
|
||||||
|
if (!arguments.length) return showDistY;
|
||||||
|
showDistY = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.showControls = function(_) {
|
||||||
|
if (!arguments.length) return showControls;
|
||||||
|
showControls = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.showLegend = function(_) {
|
||||||
|
if (!arguments.length) return showLegend;
|
||||||
|
showLegend = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.tooltips = function(_) {
|
||||||
|
if (!arguments.length) return tooltips;
|
||||||
|
tooltips = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
chart.tooltipContent = function(_) {
|
||||||
|
if (!arguments.length) return tooltip;
|
||||||
|
tooltip = _;
|
||||||
|
return chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
return chart;
|
||||||
|
}
|
@ -75,7 +75,7 @@ nv.models.stackedAreaChart = function() {
|
|||||||
|
|
||||||
if (showLegend) {
|
if (showLegend) {
|
||||||
legend
|
legend
|
||||||
.width(availableWidth/2 - margin.right);
|
.width( availableWidth / 2 );
|
||||||
|
|
||||||
g.select('.legendWrap')
|
g.select('.legendWrap')
|
||||||
.datum(data)
|
.datum(data)
|
||||||
|
Loading…
Reference in New Issue
Block a user