myChart = {
const div = html`<div style='max-width: width; overflow-x: hidden; overflow-y: hidden; padding: 0px; margin: 0px;'></div>`;
var tooltip = d3
.select("body")
.append("div")
.attr("class", "tooltip")
.style("opacity", 0);
const svg = d3
.select(div)
.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", `translate(${margin.left},${margin.top})`);
svg
.append("defs")
.append("marker")
.attr("id", "arrowhead")
.attr("viewBox", "-0 -5 10 10")
.attr("refX", 50)
.attr("refY", 0)
.attr("orient", "center")
.attr("markerWidth", 10)
.attr("markerHeight", 10)
.attr("xoverflow", "visible");
const dataset = {
nodes: [
{
id: 1,
name: "MODELO 2",
teilbereich: "CITAS SUCESIVAS",
label: "MODELO 2",
group: "titulo",
runtime: 700
},
{
id: 2,
name: "SALUD",
teilbereich: "",
label: "SALUD",
group: "Salud",
runtime: 0
},
{
id: 3,
name: "LABORAL",
teilbereich: "",
label: "LABORAL",
group: "Laboral",
runtime: 0
},
{
id: 4,
name: "",
teilbereich: "Días/duración cita",
label: "Tiempo de duración entre la generación de la cita y la cita",
group: "Salud",
runtime: 0
},
{
id: 5,
name: "",
teilbereich: "Mediana cita",
label: "Mediana de duración de las citas",
group: "Salud",
runtime: 0
},
{
id: 6,
name: "",
teilbereich: "Primer diag.",
label: "Primer diagnóstico médico",
group: "Salud",
runtime: 0
},
{
id: 7,
name: "",
teilbereich: "Últ. diag.",
label: "Último diagnóstico médico",
group: "Salud",
runtime: 0
},
{
id: 8,
name: "",
teilbereich: "Duración",
label: "Duración media estimada de la IT",
group: "Salud",
runtime: 0
},
{
id: 9,
name: "",
teilbereich: "Últ. incap.",
label: "Tiempo desde última incapacidad",
group: "Salud",
runtime: 0
},
{
id: 10,
name: "",
teilbereich: "Agrav. recaída",
label: "Indica si se ha producido una recaída por agravante",
group: "Salud",
runtime: 0
},
{
id: 11,
name: "",
teilbereich: "Frecuencia",
label: "Frecuencia del diagnóstico",
group: "Salud",
runtime: 0
},
{
id: 12,
name: "",
teilbereich: "SPS desv.",
label: "Desviación típica del SPS",
group: "Salud",
runtime: 0
},
{
id: 13,
name: "",
teilbereich: "SPS media",
label: "Media de días del SPS",
group: "Salud",
runtime: 0
},
{
id: 14,
name: "",
teilbereich: "SPS mediana",
label: "Mediana del SPS",
group: "Salud",
runtime: 0
},
{
id: 15,
name: "",
teilbereich: "Edad",
label: "Edad del trabajador a fecha de la baja",
group: "Salud",
runtime: 0
},
{
id: 16,
name: "",
teilbereich: "Base",
label: "Base de Cotización Total",
group: "Laboral",
runtime: 0
},
{
id: 17,
name: "",
teilbereich: "Provincia",
label: "Nombre de la provincia",
group: "Laboral",
runtime: 0
},
{
id: 18,
name: "",
teilbereich: "Tipo empresa",
label: "Tipo de empresa",
group: "Laboral",
runtime: 0
},
{
id: 19,
name: "",
teilbereich: "CNAE",
label: "Código de Clasificación Nacional de Actividades Económicas",
group: "Laboral",
runtime: 0
},
{
id: 20,
name: "",
teilbereich: "Tam. empresa Prov.",
label: "Relación del tamaño de la empresa dentro de la provincia",
group: "Laboral",
runtime: 0
},
{
id: 21,
name: "",
teilbereich: "Bajas largas",
label: "Número de bajas largas que ha tenido",
group: "Laboral",
runtime: 0
},
{
id: 22,
name: "",
teilbereich: "Pago prestacion",
label:
"Procedencia del pago de la prestación. (Pago directo, delegado o Mutua).",
group: "Laboral",
runtime: 0
},
{
id: 23,
name: "",
teilbereich: "Bajas año pasado",
label: "Total de bajas en el mismo mes del año pasado",
group: "Laboral",
runtime: 0
}
],
links: [
{ source: 1, target: 2 },
{ source: 1, target: 3 },
{ source: 2, target: 4 },
{ source: 2, target: 5 },
{ source: 2, target: 6 },
{ source: 2, target: 7 },
{ source: 2, target: 8 },
{ source: 2, target: 9 },
{ source: 2, target: 10 },
{ source: 2, target: 11 },
{ source: 2, target: 12 },
{ source: 2, target: 13 },
{ source: 2, target: 14 },
{ source: 2, target: 15 },
{ source: 3, target: 16 },
{ source: 3, target: 17 },
{ source: 3, target: 18 },
{ source: 3, target: 19 },
{ source: 3, target: 20 },
{ source: 3, target: 21 },
{ source: 3, target: 22 },
{ source: 3, target: 23 }
]
};
console.log("dataset is ...", dataset);
// Initialize the links
const link = svg
.selectAll(".links")
.data(dataset.links)
.enter()
.append("line")
.attr("class", "links")
.attr("marker-end", "url(#arrowhead)"); //The marker-end attribute defines the arrowhead or polymarker that will be drawn at the final vertex of the given shape.
//The <title> element provides an accessible, short-text description of any SVG container element or graphics element.
//Text in a <title> element is not rendered as part of the graphic, but browsers usually display it as a tooltip.
link.append("title").text((d) => d.type);
const edgepaths = svg
.selectAll(".edgepath") //make path go along with the link provide position for link labels
.data(dataset.links)
.enter()
.append("path")
.attr("class", "edgepath")
.attr("fill-opacity", 0)
.attr("stroke-opacity", 0)
.attr("id", function (d, i) {
return "edgepath" + i;
})
.style("pointer-events", "none");
const edgelabels = svg
.selectAll(".edgelabel")
.data(dataset.links)
.enter()
.append("text")
.style("pointer-events", "none")
.attr("class", "edgelabel")
.attr("id", function (d, i) {
return "edgelabel" + i;
})
.attr("font-size", 10)
.attr("fill", "#aaa");
edgelabels
.append("textPath") //To render text along the shape of a <path>, enclose the text in a <textPath> element that has an href attribute with a reference to the <path> element.
.attr("xlink:href", function (d, i) {
return "#edgepath" + i;
})
.style("text-anchor", "middle")
.style("pointer-events", "none")
.attr("startOffset", "50%")
.text((d) => d.type);
// Initialize the nodes
const node = svg
.selectAll(".nodes")
.data(dataset.nodes)
.enter()
.append("g")
.attr("class", "nodes")
.on("mouseover.tooltip", function (d) {
if (d.id != 1 && d.id != 2 && d.id != 3) {
tooltip.transition().duration(300).style("opacity", 0.8);
tooltip
.html(d.label)
.style("left", d3.event.pageX + "px")
.style("top", d3.event.pageY + 10 + "px");
}
})
.on("mouseout.tooltip", function (d) {
if (d.id != 1 && d.id != 2 && d.id != 3) {
tooltip.transition().duration(100).style("opacity", 0);
}
})
.on("mousemove", function () {
tooltip
.style("left", d3.event.pageX + "px")
.style("top", d3.event.pageY + 10 + "px");
})
.call(
d3
.drag() //sets the event listener for the specified typenames and returns the drag behavior.
.on("start", dragstarted) //start - after a new pointer becomes active (on mousedown or touchstart).
.on("drag", dragged) //drag - after an active pointer moves (on mousemove or touchmove).
//.on("end", dragended) //end - after an active pointer becomes inactive (on mouseup, touchend or touchcancel).
);
node
.append("circle")
.attr("r", (d) => {
if (d.id == 1) {
return 80;
}
if ((d.id == 2) | (d.id == 3)) {
return 40;
} else {
return 20;
}
})
.style("stroke", (d) => {
if (d.id == 1) {
return "grey";
} else {
return colorScale(d.group);
}
})
.style("stroke-opacity", (d) => {
if (d.id == 1) {
return 0.3;
} else if (d.id == 2 || d.id == 3) {
return 0;
} else {
return 0.5;
}
})
.style("stroke-width", (d) => {
if (d.id == 1) {
return 1;
} else if (d.id == 2 || d.id == 3) {
return 0;
} else {
return 2;
}
})
.style("fill", (d) => {
if (d.id == 1) {
return "white";
} else if (d.id == 2 || d.id == 3) {
return colorScale(d.group);
} else {
return "white";
}
});
//node.append("title").text((d) => d.id + ": " + d.label + " - " + d.group);
node
.append("text")
.attr("class", "text_titulo")
.attr("dy", (d) => {
if (d.id == 1) {
return 0;
} else {
return 5;
}
})
.attr("dx", (d) => {
if (d.id == 1) {
return 0;
} else {
return 0;
}
})
.text((d) => d.name);
node
.append("text")
.attr("dy", (d) => {
if (d.id == 1) {
return 20;
} else {
return 5;
}
})
.attr("dx", (d) => {
if (d.id == 1) {
return 0;
} else {
return 0;
}
})
.text((d) => d.teilbereich);
//Listen for tick events to render the nodes as they update in your Canvas or SVG.
simulation.nodes(dataset.nodes).on("tick", ticked);
simulation.force("link").links(dataset.links);
// This function is run at each iteration of the force algorithm, updating the nodes position (the nodes data array is directly manipulated).
function ticked() {
link
.attr("x1", (d) => d.source.x)
.attr("y1", (d) => d.source.y)
.attr("x2", (d) => d.target.x)
.attr("y2", (d) => d.target.y);
node.attr("transform", (d) => `translate(${d.x},${d.y})`);
edgepaths.attr(
"d",
(d) =>
"M " +
d.source.x +
" " +
d.source.y +
" L " +
d.target.x +
" " +
d.target.y
);
}
//When the drag gesture starts, the targeted node is fixed to the pointer
//The simulation is temporarily “heated” during interaction by setting the target alpha to a non-zero value.
function dragstarted(d) {
if (!d3.event.active) simulation.alphaTarget(0.3).restart(); //sets the current target alpha to the specified number in the range [0,1].
d.fy = d.y; //fx - the node’s fixed x-position. Original is null.
d.fx = d.x; //fy - the node’s fixed y-position. Original is null.
tooltip.style("left", d.x + "px").style("top", d.y + 10 + "px");
}
//When the drag gesture starts, the targeted node is fixed to the pointer
function dragged(d) {
d.fx = d3.event.x;
d.fy = d3.event.y;
tooltip
.style("left", d3.event.x + "px")
.style("top", d3.event.y + 10 + "px");
}
return div;
}