mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-01-15 15:40:53 +01:00
79 lines
No EOL
1.9 KiB
HTML
79 lines
No EOL
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link href="../build/nv.d3.css" rel="stylesheet" type="text/css">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.2/d3.min.js" charset="utf-8"></script>
|
|
<script src="../build/nv.d3.js"></script>
|
|
<script src="../examples/lib/stream_layers.js"></script>
|
|
|
|
<style>
|
|
text {
|
|
font: 12px sans-serif;
|
|
}
|
|
svg {
|
|
display: block;
|
|
}
|
|
html, body, #chart, svg {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="chart" class='with-3d-shadow with-transitions'>
|
|
<svg></svg>
|
|
</div>
|
|
|
|
<script>
|
|
|
|
nv.addGraph(function() {
|
|
var chart = nv.models.lineWithFocusChart();
|
|
|
|
chart.brushExtent([50,70]);
|
|
|
|
chart.xAxis.tickFormat(d3.format(',f'));
|
|
chart.x2Axis.tickFormat(d3.format(',f'));
|
|
chart.yAxis.tickFormat(d3.format(',.2f'));
|
|
chart.y2Axis.tickFormat(d3.format(',.2f'));
|
|
chart.useInteractiveGuideline(true);
|
|
|
|
d3.select('#chart svg')
|
|
.datum(testData())
|
|
.call(chart);
|
|
|
|
nv.utils.windowResize(chart.update);
|
|
|
|
return chart;
|
|
});
|
|
|
|
function testData() {
|
|
var data = stream_layers(3,128,.1).map(function(data, i) {
|
|
return {
|
|
key: 'Stream' + i,
|
|
area: i === 1,
|
|
values: data
|
|
};
|
|
});
|
|
|
|
// Set some y data to null
|
|
var i, j, d, o;
|
|
for(i = 0; i < data.length; i++) {
|
|
d = data[i];
|
|
for(j = 0; j < d.values.length; j++) {
|
|
o = d.values[j];
|
|
if (j % (i + 5) == 0) {
|
|
o.y = null;
|
|
}
|
|
}
|
|
}
|
|
console.log(data);
|
|
return data;
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
</html> |