Last active
January 21, 2018 01:37
-
-
Save NPashaP/90b529d511252dc6df1793f8d2cb4e7c to your computer and use it in GitHub Desktop.
Viz - biPartite - fill
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
</head> | |
<style> | |
.viz-biPartite-subBar{ | |
shape-rendering:crispEdges; | |
} | |
.viz-biPartite-mainBar{ | |
fill-opacity: 0; | |
stroke-width: 0.5px; | |
stroke: rgb(0, 0, 0); | |
stroke-opacity: 0; | |
} | |
</style> | |
<body> | |
<svg width="960" height="700"> | |
<g transform="translate(250,50)"></g> | |
</svg> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<script src="http://vizjs.org/viz.v1.3.0.min.js"></script> | |
<script> | |
data=[ | |
['A','X', 2] | |
,['A','Y', 3] | |
,['B','X', 5] | |
,['B','Y', 8] | |
,['C','X', 2] | |
,['C','Y', 9] | |
]; | |
function fill(){ | |
var color = {'A':'#001f3f','B':'#0074D9','C':'#7FDBFF'} | |
return function(d){ return color[d.primary] } | |
} | |
var bP = viz.biPartite() | |
.fill(fill()) | |
.data(data) | |
d3.select("g").call(bP) | |
// adjust the bl.ocks frame dimension. Not part of example. | |
d3.select(self.frameElement).style("height", "700px"); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment