2012-06-09 06:51:41 +00:00
|
|
|
|
2012-06-09 19:44:12 +00:00
|
|
|
nv.models.lineChart = function() {
|
2012-06-09 06:51:41 +00:00
|
|
|
var margin = {top: 30, right: 20, bottom: 50, left: 60},
|
|
|
|
color = d3.scale.category20().range(),
|
|
|
|
width = null,
|
|
|
|
height = null,
|
2012-06-14 05:18:12 +00:00
|
|
|
showLegend = true,
|
2012-06-15 16:47:47 +00:00
|
|
|
tooltips = true,
|
2012-06-09 06:51:41 +00:00
|
|
|
tooltip = function(key, x, y, e, graph) {
|
|
|
|
return '<h3>' + key + '</h3>' +
|
|
|
|
'<p>' + y + ' at ' + x + '</p>'
|
|
|
|
};
|
|
|
|
|
|
|
|
var lines = nv.models.line(),
|
|
|
|
x = lines.xScale(),
|
|
|
|
y = lines.yScale(),
|
2012-06-26 16:31:16 +00:00
|
|
|
xAxis = nv.models.axis().scale(x).orient('bottom').tickPadding(5),
|
2012-06-09 06:51:41 +00:00
|
|
|
yAxis = nv.models.axis().scale(y).orient('left'),
|
|
|
|
legend = nv.models.legend().height(30),
|
|
|
|
dispatch = d3.dispatch('tooltipShow', 'tooltipHide');
|
|
|
|
|
|
|
|
|
|
|
|
var showTooltip = function(e, offsetElement) {
|
|
|
|
var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ),
|
|
|
|
top = e.pos[1] + ( offsetElement.offsetTop || 0),
|
|
|
|
x = xAxis.tickFormat()(lines.x()(e.point)),
|
|
|
|
y = yAxis.tickFormat()(lines.y()(e.point)),
|
|
|
|
content = tooltip(e.series.key, x, y, e, chart);
|
|
|
|
|
|
|
|
nv.tooltip.show([left, top], content);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function chart(selection) {
|
|
|
|
selection.each(function(data) {
|
2012-06-20 06:38:19 +00:00
|
|
|
var container = d3.select(this),
|
|
|
|
that = this;
|
2012-06-09 06:51:41 +00:00
|
|
|
|
2012-06-12 06:26:57 +00:00
|
|
|
var availableWidth = (width || parseInt(container.style('width')) || 960)
|
2012-06-09 06:51:41 +00:00
|
|
|
- margin.left - margin.right,
|
2012-06-12 06:26:57 +00:00
|
|
|
availableHeight = (height || parseInt(container.style('height')) || 400)
|
2012-06-09 06:51:41 +00:00
|
|
|
- margin.top - margin.bottom;
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-18 01:58:58 +00:00
|
|
|
var wrap = container.selectAll('g.wrap.lineChart').data([data]);
|
|
|
|
var gEnter = wrap.enter().append('g').attr('class', 'wrap nvd3 lineChart').append('g');
|
2012-06-09 06:51:41 +00:00
|
|
|
|
|
|
|
gEnter.append('g').attr('class', 'x axis');
|
|
|
|
gEnter.append('g').attr('class', 'y axis');
|
|
|
|
gEnter.append('g').attr('class', 'linesWrap');
|
|
|
|
gEnter.append('g').attr('class', 'legendWrap');
|
|
|
|
|
|
|
|
|
2012-06-14 05:18:12 +00:00
|
|
|
var g = wrap.select('g');
|
2012-06-09 06:51:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 05:18:12 +00:00
|
|
|
if (showLegend) {
|
|
|
|
legend.width(availableWidth);
|
2012-06-09 06:51:41 +00:00
|
|
|
|
2012-06-14 05:18:12 +00:00
|
|
|
g.select('.legendWrap')
|
|
|
|
.datum(data)
|
|
|
|
.call(legend);
|
2012-06-15 16:47:47 +00:00
|
|
|
|
|
|
|
if ( margin.top != legend.height()) {
|
|
|
|
margin.top = legend.height();
|
|
|
|
availableHeight = (height || parseInt(container.style('height')) || 400)
|
|
|
|
- margin.top - margin.bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
g.select('.legendWrap')
|
|
|
|
.attr('transform', 'translate(0,' + (-margin.top) +')')
|
2012-06-14 05:18:12 +00:00
|
|
|
}
|
2012-06-09 06:51:41 +00:00
|
|
|
|
|
|
|
|
2012-06-15 16:47:47 +00:00
|
|
|
lines
|
|
|
|
.width(availableWidth)
|
|
|
|
.height(availableHeight)
|
|
|
|
.color(data.map(function(d,i) {
|
2012-06-20 21:04:30 +00:00
|
|
|
return d.color || color[i % color.length];
|
2012-06-15 16:47:47 +00:00
|
|
|
}).filter(function(d,i) { return !data[i].disabled }));
|
|
|
|
|
|
|
|
|
2012-06-09 06:51:41 +00:00
|
|
|
|
2012-06-14 05:18:12 +00:00
|
|
|
g.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')');
|
|
|
|
|
|
|
|
|
2012-06-09 06:51:41 +00:00
|
|
|
var linesWrap = g.select('.linesWrap')
|
|
|
|
.datum(data.filter(function(d) { return !d.disabled }))
|
|
|
|
|
|
|
|
d3.transition(linesWrap).call(lines);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xAxis
|
2012-06-18 17:36:12 +00:00
|
|
|
//.scale(x)
|
2012-06-09 06:51:41 +00:00
|
|
|
.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
|
2012-06-18 17:36:12 +00:00
|
|
|
//.scale(y)
|
2012-06-09 06:51:41 +00:00
|
|
|
.ticks( availableHeight / 36 )
|
|
|
|
.tickSize( -availableWidth, 0);
|
|
|
|
|
|
|
|
d3.transition(g.select('.y.axis'))
|
|
|
|
.call(yAxis);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
legend.dispatch.on('legendClick', function(d,i) {
|
|
|
|
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)
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
|
|
|
|
lines.dispatch.on('elementMouseover.tooltip', function(e) {
|
2012-06-09 19:44:12 +00:00
|
|
|
e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top];
|
|
|
|
dispatch.tooltipShow(e);
|
2012-06-09 06:51:41 +00:00
|
|
|
});
|
2012-06-20 06:38:19 +00:00
|
|
|
if (tooltips) dispatch.on('tooltipShow', function(e) { showTooltip(e, that.parentNode) } ); // TODO: maybe merge with above?
|
2012-06-09 06:51:41 +00:00
|
|
|
|
|
|
|
lines.dispatch.on('elementMouseout.tooltip', function(e) {
|
|
|
|
dispatch.tooltipHide(e);
|
|
|
|
});
|
2012-06-15 16:47:47 +00:00
|
|
|
if (tooltips) dispatch.on('tooltipHide', nv.tooltip.cleanup);
|
2012-06-09 06:51:41 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//TODO: decide if this is a good idea, and if it should be in all models
|
|
|
|
chart.update = function() { chart(selection) };
|
|
|
|
|
|
|
|
|
|
|
|
return chart;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
chart.dispatch = dispatch;
|
|
|
|
chart.legend = legend;
|
|
|
|
chart.xAxis = xAxis;
|
|
|
|
chart.yAxis = yAxis;
|
|
|
|
|
|
|
|
d3.rebind(chart, lines, 'x', 'y', 'size', 'xDomain', 'yDomain', 'forceX', 'forceY', 'interactive', 'clipEdge', 'clipVoronoi', 'id');
|
|
|
|
|
|
|
|
|
|
|
|
chart.margin = function(_) {
|
|
|
|
if (!arguments.length) return margin;
|
|
|
|
margin = _;
|
|
|
|
return chart;
|
|
|
|
};
|
|
|
|
|
|
|
|
chart.width = function(_) {
|
|
|
|
if (!arguments.length) return width;
|
|
|
|
width = _;
|
|
|
|
return chart;
|
|
|
|
};
|
|
|
|
|
|
|
|
chart.height = function(_) {
|
|
|
|
if (!arguments.length) return height;
|
|
|
|
height = _;
|
|
|
|
return chart;
|
|
|
|
};
|
|
|
|
|
2012-06-15 16:47:47 +00:00
|
|
|
chart.color = function(_) {
|
|
|
|
if (!arguments.length) return color;
|
|
|
|
color = _;
|
|
|
|
legend.color(_);
|
|
|
|
return chart;
|
|
|
|
};
|
|
|
|
|
2012-06-14 05:18:12 +00:00
|
|
|
chart.showLegend = function(_) {
|
|
|
|
if (!arguments.length) return showLegend;
|
|
|
|
showLegend = _;
|
|
|
|
return chart;
|
|
|
|
};
|
|
|
|
|
2012-06-15 16:47:47 +00:00
|
|
|
chart.tooltips = function(_) {
|
|
|
|
if (!arguments.length) return tooltips;
|
|
|
|
tooltips = _;
|
|
|
|
return chart;
|
|
|
|
};
|
|
|
|
|
|
|
|
chart.tooltipContent = function(_) {
|
|
|
|
if (!arguments.length) return tooltip;
|
|
|
|
tooltip = _;
|
|
|
|
return chart;
|
|
|
|
};
|
|
|
|
|
2012-06-09 06:51:41 +00:00
|
|
|
|
|
|
|
return chart;
|
|
|
|
}
|