Skip to content

Commit

Permalink
Adding Parallel coordinates viz
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jan 21, 2016
1 parent 2885227 commit 73989f4
Show file tree
Hide file tree
Showing 7 changed files with 2,456 additions and 0 deletions.
1 change: 1 addition & 0 deletions TODO.md
Expand Up @@ -2,6 +2,7 @@
List of TODO items for Panoramix

## Features
* Slider form element
* **Dashboard URL filters:** `{dash_url}#fltin__fieldname__value1,value2`
* **Default slice:** choose a default slice for the dataset instead of default endpoint
* **refresh freq**: specifying the refresh frequency of a dashboard and specific slices within it, some randomization would be nice
Expand Down
3 changes: 3 additions & 0 deletions panoramix/forms.py
Expand Up @@ -371,6 +371,9 @@ def __init__(self, viz):
"Range Filter", default=False,
description=(
"Whether to display the time range interactive selector")),
'show_datatable': BetterBooleanField(
"Data Table", default=False,
description="Whether to display the interactive data table"),
'include_search': BetterBooleanField(
"Search Box", default=False,
description=(
Expand Down
60 changes: 60 additions & 0 deletions panoramix/static/lib/para/d3.parcoords.css
@@ -0,0 +1,60 @@
.parcoords svg, .parcoords canvas {
font-size: 12px;
position: absolute;
}
.parcoords > canvas {
pointer-events: none;
}

.parcoords text.label {
font: 100%;
font-size: 12px;
cursor: drag;
}

.parcoords rect.background {
fill: transparent;
}
.parcoords rect.background:hover {
fill: rgba(120,120,120,0.2);
}
.parcoords .resize rect {
fill: rgba(0,0,0,0.1);
}
.parcoords rect.extent {
fill: rgba(255,255,255,0.25);
stroke: rgba(0,0,0,0.6);
}
.parcoords .axis line, .parcoords .axis path {
fill: none;
stroke: #222;
shape-rendering: crispEdges;
}
.parcoords canvas {
opacity: 1;
-moz-transition: opacity 0.3s;
-webkit-transition: opacity 0.3s;
-o-transition: opacity 0.3s;
}
.parcoords canvas.faded {
opacity: 0.25;
}
.parcoords {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: white;
}

/* data table styles */
.parcoords .row, .parcoords .header {
clear: left; font-size: 12px; line-height: 18px; height: 18px;
margin: 0px;
}
.parcoords .row:nth-child(odd) { background: rgba(0,0,0,0.05); }
.parcoords .header { font-weight: bold; }
.parcoords .cell { float: left; overflow: hidden; white-space: nowrap; width: 100px; height: 18px; }
.parcoords .col-0 { width: 180px; }

0 comments on commit 73989f4

Please sign in to comment.