I am diving into the world of d3 and experimenting with
Behold, a simplistic example directly from the website.
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="d3.parcoords.js"></script>
<link rel="stylesheet" type="text/css" href="d3.parcoords.css">
<div id="example" class="parcoords" style="width:360px;height:150px"></div>
<script>
var data = [
[0,-0,0,0,0,3 ],
[1,-1,1,2,1,6 ],
[2,-2,4,4,0.5,2],
[3,-3,9,6,0.33,4],
[4,-4,16,8,0.25,9]
];
var pc = d3.parcoords()("#example")
.data(data)
.render()
.ticks(3)
.createAxes();
</script>
I've been playing around with hiding specific dimensions using # parcoords.dimensions(dimensions). Anyone have an elegant solution for this?