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
<svg:g class="axis--x"></svg:g> |
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
const xAxis = d3.select(‘svg’) | |
.append(‘g’) | |
.attr(‘class’, ‘axis--x’) | |
.call(d3.axisBottom(xScale)); |
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
import {select as d3_select} from 'd3-selection'; | |
... | |
const markerRef = useRef(); | |
useEffect(() => { | |
d3_select(markerRef.current) | |
.transition() | |
.duration(1000) | |
.attr('cx', item.x) | |
.attr('cy', item.y); |
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
const markers = d3.selectAll(‘.marker’) | |
.data(data, d => d.id) | |
.enter() | |
.append(‘circle’) | |
.attr(‘class’, ‘marker’) | |
.attr(‘r’, 7.5) | |
.transition() | |
.duration(1000) | |
.attr(‘cx’, d => d.x) | |
.attr(‘cy’, d => d.y); |
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
<svg:circle [attr.r.px]="item.r" | |
[ngClass]="'marker'" | |
[appSvgTransition]="transition" | |
[d3-attr]="{cx: item.x, cy: item.y}"> | |
</svg:circle> |
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
import {quadtree as d3_quadtree} from "d3-quadtree"; | |
import {search} from "search.js"; | |
// ... | |
// Create cluster points, i.e. an array of: | |
// [[cluster_x, cluster_y, [points_to_cluster], ...] | |
const nodes = [[0, 0, {id: 1, r: 10, name: "node-1"}], [10, 10, {id: 2, r: 10, name: "node-2"}]]; | |
const clusterRange = 80; | |
const quadtree = d3_quadtree().addAll(nodes); |
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
const calculateLayout = (items, spacing = 0.01) => { | |
// Calculate a force directed placement for each point | |
const MAX_STEPS = 300, | |
STRENGTH = 10, | |
ALPHA = 0.3; | |
if (!items.length) return []; | |
const getY = d => d.y; | |
const getX = d => d.x; |
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
<svg width="100%" height="100%"> | |
<defs> | |
<mask | |
id='mask-for-area-chart' | |
maskUnits="userSpaceOnUse" | |
maskContentUnits="userSpaceOnUse"> | |
<path d="M0Z" style="fill: white;"> | |
</path> | |
</g> | |
</mask> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
name: Deploy Staging Branch | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest |