b72d51858a
Updated pie/bar charts to have click handlers Updated bar chart to allow negative values.
143 lines
2.8 KiB
HTML
143 lines
2.8 KiB
HTML
<!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;
|
|
}
|
|
|
|
</style>
|
|
<body>
|
|
|
|
<svg id="test1"></svg>
|
|
|
|
<script src="../lib/d3.v2.js"></script>
|
|
<script src="../nv.d3.js"></script>
|
|
<script src="../src/models/bar.js"></script>
|
|
<script>
|
|
|
|
var testdata = [
|
|
{
|
|
label: "One",
|
|
y: 5
|
|
},
|
|
{
|
|
label: "Two",
|
|
y: 2
|
|
},
|
|
{
|
|
label: "Three",
|
|
y: 9
|
|
},
|
|
{
|
|
label: "Four",
|
|
y: -7
|
|
},
|
|
{
|
|
label: "Five",
|
|
y: 4
|
|
},
|
|
{
|
|
label: "Six",
|
|
y: 3
|
|
}
|
|
];
|
|
|
|
//Format A
|
|
nv.addGraph({
|
|
generate: function() {
|
|
var width = nv.utils.windowSize().width - 40,
|
|
height = nv.utils.windowSize().height - 40;
|
|
|
|
var chart = nv.models.bar()
|
|
.width(width)
|
|
.height(height)
|
|
.labelField('label')
|
|
.dataField('y');
|
|
|
|
d3.select("#test1")
|
|
.attr('width', width)
|
|
.attr('height', height)
|
|
.datum(testdata)
|
|
.call(chart);
|
|
|
|
return chart;
|
|
},
|
|
callback: function(graph) {
|
|
|
|
graph.dispatch.on('tooltipShow', function(e) {
|
|
var offsetElement = document.getElementById("chart"),
|
|
left = e.pos[0],
|
|
top = e.pos[1];
|
|
|
|
var content = '<h3>' + e.label + '</h3>' +
|
|
'<p>' +
|
|
e.value +
|
|
'</p>';
|
|
|
|
nv.tooltip.show([left, top], content);
|
|
});
|
|
|
|
graph.dispatch.on('tooltipHide', function(e) {
|
|
nv.tooltip.cleanup();
|
|
});
|
|
|
|
graph.dispatch.on('elementClick', function(e) {
|
|
console.log("Bar Click",e);
|
|
});
|
|
|
|
graph.dispatch.on('chartClick', function(e) {
|
|
console.log("Chart Click",e);
|
|
});
|
|
|
|
window.onresize = function() {
|
|
var width = nv.utils.windowSize().width - 40,
|
|
height = nv.utils.windowSize().height - 40;
|
|
|
|
d3.select("#test1")
|
|
.attr('width', width)
|
|
.attr('height', height)
|
|
.call(
|
|
graph
|
|
.width(width)
|
|
.height(height)
|
|
)
|
|
};
|
|
}
|
|
});
|
|
|
|
/*
|
|
//Format B
|
|
nv.addGraph(function() {
|
|
var selection = d3.select("body")
|
|
.datum(irwinHallDistribution(10000, 10));
|
|
|
|
var chart = nv.models.histogram()
|
|
.bins(d3.scale.linear().ticks(20))
|
|
.tickFormat(d3.format(".02f"));
|
|
|
|
chart(selection);
|
|
|
|
return chart;
|
|
}, function(g) { console.log(g.width(), g.height()) })
|
|
|
|
//Format C
|
|
nv.addGraph(function() {
|
|
return nv.models.histogram()
|
|
.bins(d3.scale.linear().ticks(20))
|
|
.tickFormat(d3.format(".02f"))(
|
|
d3.select("body")
|
|
.datum(irwinHallDistribution(10000, 10))
|
|
);
|
|
}, function(g) { console.log(g.width(), g.height()) })
|
|
*/
|
|
|
|
|
|
|
|
</script>
|