The VisDock toolkit has been integrated into this Stacked Bar Chart example built with D3.js (found here) by Mike Bostock. This example is similar to another stacked bar example with VisDock, which can be found here. This example requires only very small change to the original source code. Using selection and other tools, users can query stacked bars made of rectangular elements, and explore the plot closely using Pan & Zoom tools. For more information about VisDock, cick on the link.
xxxxxxxxxx
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.bar {
fill: steelblue;
}
.x.axis path {
display: none;
}
.legend line {
stroke: #000;
shape-rendering: crispEdges;
}
</style>
<body>
<link href="https://rawgithub.com/VisDockHub/NewVisDock/master/master/visdock.css" rel="stylesheet" type="text/css"/>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://rawgithub.com/visdockhub/newvisdock/master/master/visdock.js"></script>
<script src="https://rawgithub.com/visdockhub/newvisdock/master/master/2d.js"></script>
<script src="https://rawgithub.com/visdockhub/newvisdock/master/master/intersectionutilities.js"></script>
<script src="https://rawgithub.com/visdockhub/newvisdock/master/master/visdock.utils.js"></script>
<script>
VisDock.init("body", {width: 1000, height: 700});
var viewport = VisDock.getViewport();
var margin = {top: 20, right: 100, bottom: 30, left: 40},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var x = d3.scale.ordinal()
.rangeRoundBands([0, width], .1);
var y = d3.scale.linear()
.rangeRound([height, 0]);
var color = d3.scale.ordinal()
.range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.tickFormat(d3.format(".0%"));
var svg = viewport;
Panel.x = margin.left;
Panel.y = margin.top;
Panel.setTransform();
d3.csv("data.csv", function(error, data) {
VisDock.startChrome();
color.domain(d3.keys(data[0]).filter(function(key) { return key !== "State"; }));
data.forEach(function(d) {
var y0 = 0;
d.ages = color.domain().map(function(name) { return {name: name, y0: y0, y1: y0 += +d[name]}; });
d.ages.forEach(function(d) { d.y0 /= y0; d.y1 /= y0; });
});
data.sort(function(a, b) { return b.ages[0].y1 - a.ages[0].y1; });
x.domain(data.map(function(d) { return d.State; }));
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
svg.append("g")
.attr("class", "y axis")
.call(yAxis);
var state = svg.selectAll(".state")
.data(data)
.enter().append("g")
.attr("class", "state")
.attr("transform", function(d) { return "translate(" + x(d.State) + ",0)"; });
state.selectAll("rect")
.data(function(d) { return d.ages; })
.enter().append("rect")
.attr("width", x.rangeBand())
.attr("y", function(d) { return y(d.y1); })
.attr("height", function(d) { return y(d.y0) - y(d.y1); })
.style("fill", function(d) { return color(d.name); });
var legend = svg.select(".state:last-child").selectAll(".legend")
.data(function(d) { return d.ages; })
.enter().append("g")
.attr("class", "legend")
.attr("transform", function(d) { return "translate(" + x.rangeBand() / 2 + "," + y((d.y0 + d.y1) / 2) + ")"; });
legend.append("line")
.attr("x2", 10);
legend.append("text")
.attr("x", 13)
.attr("dy", ".35em")
.text(function(d) { return d.name; });
VisDock.finishChrome();
});
VisDock.eventHandler = {
getHitsPolygon: function(points, inclusive, t) {
var shapebound = new createPolygon(points);
return shapebound.intersectPolygon(Panel.viewport.selectAll("rect")[0], inclusive)
},
getHitsEllipse: function(points, inclusive, t) {
var shapebound = new createEllipse(points);
return shapebound.intersectPolygon(Panel.viewport.selectAll("rect")[0], inclusive)
},
getHitsLine: function(points, inclusive) {
var shapebound = new createLine(points);
return shapebound.intersectPolygon(Panel.viewport.selectAll("rect")[0], inclusive)
},
setColor: function(hits) {
for (var i = 0; i < hits.length; i++) {
VisDock.utils.addPolygonLayer(hits[i], undefined, num - 1);
}
},
changeColor: function(color, query, index) {
VisDock.utils.changeColor(color, query, "fill")
},
changeVisibility: function(vis, query, index) {
VisDock.utils.changeVisibility(vis, query)
},
removeColor: function(hits, index) {
for (var i = 0; i < hits.length; i++) {
hits[i].remove();
}
}
}
BirdView.init(viewport, 1000, 900)
d3.select(self.frameElement).style("width", "1000px")
d3.select(self.frameElement).style("height", "900px")
</script>
Modified http://d3js.org/d3.v3.min.js to a secure url
Modified http://rawgithub.com/VisDockHub/NewVisDock/master/master/visdock.js to a secure url
Modified http://rawgithub.com/VisDockHub/NewVisDock/master/master/2D.js to a secure url
Modified http://rawgithub.com/VisDockHub/NewVisDock/master/master/IntersectionUtilities.js to a secure url
Modified http://rawgithub.com/VisDockHub/NewVisDock/master/master/visdock.utils.js to a secure url
https://d3js.org/d3.v3.min.js
https://rawgithub.com/VisDockHub/NewVisDock/master/master/visdock.js
https://rawgithub.com/VisDockHub/NewVisDock/master/master/2D.js
https://rawgithub.com/VisDockHub/NewVisDock/master/master/IntersectionUtilities.js
https://rawgithub.com/VisDockHub/NewVisDock/master/master/visdock.utils.js