t-viSNE: Interactive Assessment and Interpretation of t-SNE Projections
https://doi.org/10.1109/TVCG.2020.2986996
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
932 B
48 lines
932 B
.parcoords > svg, .parcoords > canvas {
|
|
font: 14px sans-serif;
|
|
position: absolute;
|
|
}
|
|
.parcoords > canvas {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.parcoords text.label {
|
|
cursor: default;
|
|
}
|
|
|
|
.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;
|
|
} |