Published
Edited
Aug 9, 2021
Fork of Arc diagram
4 forks
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
html`
${DOM.download(await rasterize(chart), null, "Download as PNG")}
${DOM.download(await serialize(chart), null, "Download as SVG")}
`
Insert cell
import {rasterize, serialize} from "@mbostock/saving-svg"
Insert cell
viewof hourSlider = rangeSlider({
min: 0,
max: 23.99 ,
value: this ? this.value : [8, 17], // Default value
color: '#3b99fc',
title: 'Hours',
})
Insert cell
function arc(d) {
const y1 = d.source.y;
const y2 = d.target.y;
const r = Math.abs(y2 - y1) / 2;
return `M${margin.left},${y1}A${r},${r} 0,0,${y1 < y2 ? 1 : 0} ${margin.left},${y2}`;
}
Insert cell
y = d3.scalePoint(graph.nodes.map(d => d.id).sort(d3.ascending), [margin.top, height - margin.bottom])
Insert cell
function fil_dia(element) {
return (dia === 'Todo') || (element.fecha === parseInt(dia,10));
}
Insert cell
function fil_periodo(element) {
return (periodo === 'Todo') || (element.timeframe === periodo);
}
Insert cell
function fil_lugar(element) {
return (lugar === 'Todo') || (element.location === lugar);
}
Insert cell
margin = ({top: 20, right: 20, bottom: 20, left: 120})
Insert cell
height = (data.nodes.length - 1) * step + margin.top + margin.bottom
Insert cell
step = 14
Insert cell
color = d3.scaleOrdinal(graph.nodes.map(d => d.group).sort(d3.ascending), d3.schemeCategory10)
Insert cell
graph = {
const nodes = data.nodes.map(({id, group}) => ({
id,
sourceLinks: [],
targetLinks: [],
group
}));

const nodeById = new Map(nodes.map(d => [d.id, d]));

const links = data.links.map(({source, target, fecha, value,timeframe,location}) => ({
source: nodeById.get(source),
target: nodeById.get(target),
value,
fecha,
timeframe,
location
}));

for (const link of links) {
const {source, target, value} = link;
source.sourceLinks.push(link);
target.targetLinks.push(link);
}

return {nodes, links};
}
Insert cell
data = FileAttachment("kronos-new.json").json()
Insert cell
d3 = require("d3@5")
Insert cell
import {slider} from "@jashkenas/inputs"
Insert cell
import {select} from "@jashkenas/inputs"
Insert cell
// RangeSlider - https://observablehq.com/@mootari/range-slider
import {rangeSlider} from "@mootari/range-slider"
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more