ledgerrb/public/app/vendor/node_modules/nvd3/examples/boxPlot.html
2016-08-10 14:45:45 +02:00

89 lines
1.8 KiB
HTML

<!DOCTYPE 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>
<style>
text {
font: 12px sans-serif;
}
svg {
display: block;
}
html, body, #chart1, svg {
margin: 0px;
padding: 0px;
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div class="gallery" id="chart1">
<svg></svg>
</div>
<script>
nv.addGraph(function() {
var chart = nv.models.boxPlotChart()
.x(function(d) { return d.label })
.staggerLabels(true)
.maxBoxWidth(75) // prevent boxes from being incredibly wide
.yDomain([0, 500])
;
d3.select('#chart1 svg')
.datum(exampleData())
.call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
function exampleData() {
return [
{
label: "Sample A",
values: {
Q1: 120,
Q2: 150,
Q3: 200,
whisker_low: 115,
whisker_high: 210,
outliers: [50, 100, 225]
},
},
{
label: "Sample B",
values: {
Q1: 300,
Q2: 350,
Q3: 400,
whisker_low: 225,
whisker_high: 425,
outliers: [175]
},
},
{
label: "Sample C",
values: {
Q1: 50,
Q2: 100,
Q3: 125,
whisker_low: 25,
whisker_high: 175,
outliers: [0]
},
}
];
}
</script>
</body>
</html>