2012-05-30 19:18:18 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<link href="../src/d3.css" rel="stylesheet" type="text/css">
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
body {
|
|
|
|
overflow-y:scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
text {
|
|
|
|
font: 12px sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chart1 {
|
|
|
|
height: 500px;
|
|
|
|
margin: 10px;
|
|
|
|
min-width: 100px;
|
|
|
|
min-height: 100px;
|
|
|
|
/*
|
|
|
|
Minimum height and width is a good idea to prevent negative SVG dimensions...
|
|
|
|
For example width should be =< margin.left + margin.right + 1,
|
|
|
|
of course 1 pixel for the entire chart would not be very useful, BUT should not have errors
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="chart1">
|
|
|
|
</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/multiBar.js"></script>
|
|
|
|
<script src="../src/models/multiBarWithLegend.js"></script>
|
|
|
|
<script src="stream_layers.js"></script>
|
|
|
|
<script>
|
|
|
|
|
2012-06-06 19:26:51 +00:00
|
|
|
var test_data = stream_layers(3,Math.random()*200,.1).map(function(data, i) {
|
2012-05-30 19:18:18 +00:00
|
|
|
return {
|
|
|
|
key: 'Stream' + i,
|
|
|
|
values: data
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2012-06-08 19:44:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-05-30 19:18:18 +00:00
|
|
|
var selector = '#chart1',
|
2012-06-08 21:21:08 +00:00
|
|
|
chart = nv.models.multiBarWithLegend(),
|
|
|
|
//.x(function(d) { return d.label })
|
|
|
|
//.y(function(d) { return d.value })
|
|
|
|
data = test_data,
|
|
|
|
xTickFormat = d3.format(',f'),
|
2012-05-30 19:18:18 +00:00
|
|
|
yTickFormat = d3.format(',.2f'),
|
|
|
|
xAxisLabel = null,
|
|
|
|
yAxisLabel = null,
|
|
|
|
duration = 500;
|
|
|
|
|
|
|
|
nv.addGraph({
|
|
|
|
generate: function() {
|
|
|
|
var container = d3.select(selector),
|
|
|
|
width = function() { return parseInt(container.style('width')) },
|
|
|
|
height = function() { return parseInt(container.style('height')) },
|
|
|
|
svg = container.append('svg');
|
|
|
|
|
|
|
|
chart
|
|
|
|
.width(width)
|
|
|
|
.height(height);
|
|
|
|
|
|
|
|
chart.xAxis
|
|
|
|
.tickFormat(xTickFormat);
|
|
|
|
|
|
|
|
chart.yAxis
|
|
|
|
.tickFormat(yTickFormat)
|
|
|
|
.axisLabel(yAxisLabel);
|
|
|
|
|
|
|
|
svg
|
|
|
|
.attr('width', width())
|
|
|
|
.attr('height', height())
|
|
|
|
.datum(data)
|
|
|
|
.transition().duration(duration).call(chart);
|
|
|
|
|
|
|
|
return chart;
|
|
|
|
},
|
|
|
|
callback: function(chart) {
|
|
|
|
var showTooltip = function(e) {
|
|
|
|
var offsetElement = document.getElementById(selector.substr(1)),
|
|
|
|
left = e.pos[0] + offsetElement.offsetLeft,
|
|
|
|
top = e.pos[1] + offsetElement.offsetTop,
|
|
|
|
formatY = chart.yAxis.tickFormat(), //Assumes using same format as axis, can customize to show higher precision, etc.
|
|
|
|
formatX = chart.xAxis.tickFormat();
|
|
|
|
|
|
|
|
// uses the chart's getX and getY, you may customize if x position is not the same as the value you want
|
|
|
|
// ex. daily data without weekends, x is the index, while you want the date
|
|
|
|
var content = '<h3>' + e.series.key + '</h3>' +
|
|
|
|
'<p>' +
|
|
|
|
formatY(chart.y()(e.point)) + ' at ' + formatX(chart.x()(e.point)) +
|
|
|
|
'</p>';
|
|
|
|
|
2012-06-08 19:44:11 +00:00
|
|
|
nv.tooltip.show([left, top], content, e.value < 0 ? 'n' : 's');
|
2012-05-30 19:18:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
chart.dispatch.on('tooltipShow', showTooltip);
|
|
|
|
chart.dispatch.on('tooltipHide', nv.tooltip.cleanup);
|
|
|
|
|
|
|
|
|
|
|
|
window.onresize= function() {
|
|
|
|
// now that width and height are functions, should be automatic..of course you can always override them
|
2012-05-31 08:46:30 +00:00
|
|
|
|
|
|
|
d3.select('#chart1 svg')
|
|
|
|
.attr('width', chart.width()()) //need to set SVG dimensions, chart is not aware of the SVG component
|
|
|
|
.attr('height', chart.height()())
|
|
|
|
.transition().duration(duration)
|
|
|
|
.call(chart);
|
|
|
|
|
|
|
|
/*
|
2012-05-30 19:18:18 +00:00
|
|
|
d3.select('#chart1 svg')
|
|
|
|
.attr('width', chart.width()()) //need to set SVG dimensions, chart is not aware of the SVG component
|
|
|
|
.attr('height', chart.height()())
|
|
|
|
.call(chart);
|
2012-05-31 08:46:30 +00:00
|
|
|
*/
|
2012-05-30 19:18:18 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sinAndCos() {
|
|
|
|
var sin = [],
|
|
|
|
cos = [];
|
|
|
|
|
|
|
|
for (var i = 0; i < 100; i++) {
|
|
|
|
sin.push({x: i, y: Math.sin(i/10)});
|
|
|
|
cos.push({x: i, y: .5 * Math.cos(i/10)});
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
values: sin,
|
|
|
|
key: "Sine Wave",
|
|
|
|
color: "#ff7f0e"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
values: cos,
|
|
|
|
key: "Cosine Wave",
|
|
|
|
color: "#2ca02c"
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|