Skip to content

Instantly share code, notes, and snippets.

@NPashaP
Created January 7, 2018 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NPashaP/a6c93f15030b92865fdfc7bfaa95d19f to your computer and use it in GitHub Desktop.
Save NPashaP/a6c93f15030b92865fdfc7bfaa95d19f to your computer and use it in GitHub Desktop.
Viz - biPartite - orient
license: gpl-3.0
<!DOCTYPE html>
<head>
<meta charset="utf-8">
</head>
<style>
.viz-biPartite rect{
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="550">
<g transform="translate(150,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]
];
var bP = viz.biPartite()
.data(data)
.orient("horizontal")
d3.select("g").call(bP);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment