- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将一个大圆圈内的节点连接到另一个大圆圈内的节点,或者有时连接到另一个更大的圆圈本身。有没有办法实现相同的目标?我能够连接同一个圆圈内的节点。
以下是我尝试过的示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
.node {}
.link { stroke: #999; stroke-opacity: .6; stroke-width: 1px; }
</style>
<script src="https://d3js.org/d3.v4.min.js" type="text/javascript"></script>
<script src="https://d3js.org/d3-selection-multi.v1.js"></script>
</head>
<svg width="960" height="600"></svg>
<script type="text/javascript">
var data = {
"nodes": [
{
"id": "Myriel",
"group": 1,
"value": 3, // basically in this ratio the circle radius will be
"childNode" : [{
"id": "child1",
"value": 2
},{
"id": "child2",
"value": 3
},{
"id": "child3",
"value": 1
}],
"links": [{
"source": "child1",
"target": "child2",
"isByDirectional": true
},{
"source": "child1",
"target": "child3",
"isByDirectional": false
}
]
},
{
"id": "Napoleon",
"group": 1,
"value": 2, // basically in this ratio the circle radius will be
"childNode" : [{
"id": "child4",
"value": 2
},{
"id": "child5",
"value": 3
}],
"links": null
},
{
"id": "Mlle.Baptistine",
"group": 1,
"value": 1, // basically in this ratio the circle radius will be
},
{
"id": "Mme.Magloire",
"group": 1,
"value" : 1,
},
{
"id": "CountessdeLo",
"group": 1,
"value" : 2,
},
{
"id": "Geborand",
"group": 1,
"value" : 3,
}
],
"links": [
{"source": "Napoleon", "target": "Myriel", "value": 1},
{"source": "Mlle.Baptistine", "target": "Napoleon", "value": 8},
{"source": "CountessdeLo", "target": "Myriel", "value": 1},
{"source": "Geborand", "target": "CountessdeLo", "value": 1}
]
}
var nodeRadiusScale = d3.scaleSqrt().domain([0, 50]).range([10, 50]);
var color = function() {
var scale = d3.scaleOrdinal(d3.schemeCategory10);
return d => scale(d.group);
}
var drag = simulation => {
function dragstarted(d) {
if (!d3.event.active) simulation.alphaTarget(0.3).restart();
d.fx = d.x;
d.fy = d.y;
}
function dragged(d) {
d.fx = d3.event.x;
d.fy = d3.event.y;
}
function dragended(d) {
if (!d3.event.active) simulation.alphaTarget(0);
d.fx = null;
d.fy = null;
}
return d3.drag()
.on("start", dragstarted)
.on("drag", dragged)
.on("end", dragended);
}
function drawChildNodes(nodeElement, parentIds, options) {
if(!parentIds.childNodes) {
return
}
const nodeColor = options.nodeColor
const borderColor = options.borderColor
const nodeTextColor = options.nodeTextColor
const width = options.width
const height = options.height
const data = getData(parentIds, width * 2, height * 2);
const nodeData = nodeElement.selectAll("g").data(data)
var childNodeRadius = 5;
const nodesEnter = nodeData
.enter()
.append("g")
.attr("id", (d, i) => {
return "node-group-" + d.data.id
})
.attr('class', 'child-node')
.attr("transform", (d) => `translate(${d.x - width},${d.y - height})`)
.attr('cx', (d) => d.x)
.attr('cy', (d) => d.y)
nodesEnter
.filter((d) => d.height === 0)
.append("circle")
.attr("class", "node pie")
.attr("r", (d) => childNodeRadius)
.attr("stroke", borderColor)
.attr("stroke-width", 1)
.attr("fill", "white")
/*nodesEnter
.filter((d) => d.height === 0)
.append("text")
.style("fill", "black")
.attr("font-size", "0.8em")
.attr("text-anchor", "middle")
.attr("alignment-baseline", "middle")
.attr("dy", -7)
.text(d=>d.data.id)*/
if(!parentIds.childLink) {
return;
}
const linkData = nodeElement.selectAll("line").data(parentIds.childLink);
const linksEnter = linkData
.enter()
.append("line")
.attr("class", "node line")
.attr('id', (d) => d.source + '->' + d.target)
.attr("x1", (d,i) => data.find(el => el.data.id === d.source).x - width)
.attr("y1", (d,i) => data.find(el=>el.data.id === d.source).y - height)
.attr("x2", (d,i) => data.find(el=>el.data.id === d.target).x - width)
.attr("y2", (d,i) => data.find(el=>el.data.id === d.target).y - height)
.attr("stroke", 'red')
.attr("stroke-width", 1)
.attr("fill", "none")
}
function getData(parentIDs, width, height) {
var rawData = []
rawData.push({ id: "root" })
rawData.push({
id: parentIDs.key,
size: parentIDs.values,
parentId: "root"
})
parentIDs.childNodes.forEach((el) => {
rawData.push({
id: el.id,
parentId: parentIDs.key,
size: el.value
})
})
const vData = d3.stratify()(rawData)
const vLayout = d3.pack().size([width, height]).padding(10)
const vRoot = d3.hierarchy(vData).sum(function (d) {
return d.data.size
})
const vNodes = vLayout(vRoot)
const data = vNodes.descendants().slice(1)
return data
}
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height");
var links = data.links.map(d => Object.create(d));
var nodes = data.nodes.map(d => Object.create(d));
var simulation = d3.forceSimulation(nodes)
.force("link", d3.forceLink(links).id(d => d.id).distance(200))
.force("charge", d3.forceManyBody().strength(0,15))
.force("collide", d3.forceCollide(function (d) {
return 100;
//return nodeRadiusScale(d.value)
}))
.force("center", d3.forceCenter(width / 2, height / 2));
var link = svg.append("g")
.attr("stroke", "#999")
.attr("stroke-opacity", 0.6)
.selectAll("line")
.data(links)
.enter()
.append('line')
.attr("stroke-width", d => Math.sqrt(d.value));
function zoom(focus) {
const transition = svg.transition()
.duration(750)
.attr("transform", function(){
clicked = !clicked
if(clicked){
return `translate(${-(focus.x-width/2)*k},${-(focus.y-height/2)*k})scale(${k})`
} else {
return `translate(${0},${0})})scale(1)`
}
});
}
var nodeG = svg.append("g")
.selectAll("g")
.data(nodes)
.enter()
.append('g')
.call(drag(simulation))
.on("click", d => (zoom(d), d3.event.stopPropagation()));
nodeG.append('circle')
.attr("r", d => nodeRadiusScale(d.value * 2))
.attr("fill", color);
nodeG.append('text')
.style("fill", "black")
.attr("font-size", "0.8em")
.attr("text-anchor", "middle")
.attr("alignment-baseline", "middle")
.attr("dy", d => -nodeRadiusScale(d.value * 2)- 10)
.text(d=>d.id);
nodeG.append('g')
.each(function (d) {
drawChildNodes(
d3.select(this),
{ key: d.id, values: d.value, childNodes: d.childNode, childLink: d.links },
{
width: nodeRadiusScale(d.value),
height: nodeRadiusScale(d.value),
nodeColor: 'white',
borderColor: 'black',
nodeTextColor: 'black',
}
)
});
simulation.on("tick", () => {
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);
nodeG.attr("transform", d => `translate(${d.x}, ${d.y})`)
});
</script>
<body>
我想在图片中实现一些东西:
最佳答案
这是使用 D3 circle packing 的片段(V6):
const data = {
name: "root",
children: [
{
name: "A",
children: [
{name: "A1", value: 7}, {name: "A2", value: 8}, {name: "A3", value: 9}, {name: "A4", value: 10}, {name: "A5", value: 10}
]
},
{
name: "B",
children: [
{name: "B1", value: 11}, {name: "B2", value: 7}, {name: "B3", value: 8},
]
},
{
name: "C",
value: 10
},
{
name: "D",
value: 10
},
{
name: "E",
value: 10
}
],
links: [{from: "A3", to: "C"}, {from: "A2", to: "E"}, {from: "B1", to: "D"}, {from: "B2", to: "B3"}, {from: "B1", to: "C"}]
};
const svg = d3.select("svg");
const pack = data => d3.pack()
.size([400, 400])
.padding(20)
(d3.hierarchy(data)
.sum(d => d.value * 2.5)
.sort((a, b) => b.value - a.value));
const root = pack(data);
const nodes = root.descendants().slice(1);
console.log(nodes);
const container = svg.append('g')
.attr('transform', 'translate(0,-50)')
const nodeElements = container
.selectAll("circle")
.data(nodes);
nodeElements.enter()
.append("circle")
.attr('cx', d => d.x)
.attr('cy', d => d.y)
.attr('r', d => d.value)
.attr("fill", d => d.children ? "#ffe0e0" : "#ffefef")
.attr('stroke', 'black')
const labelElements = container
.selectAll("text")
.data(nodes);
labelElements.enter()
.append("text")
.text(d => d.data.name)
.attr('x', d => d.x)
.attr('y', d => d.children ? d.y + d.value + 10 : d.y)
.attr('text-anchor', 'middle')
.attr('alignment-baseline', 'middle')
.style('fill', 'black')
const linkElements = container.selectAll('path.link')
.data(data.links);
const linkPath = d => {
const from = nodes.find(n => n.data.name === d.from);
const to = nodes.find(n => n.data.name === d.to);
const length = Math.hypot(from.x - to.x, from.y - to.y);
const fd = from.value / length;
const fx = from.x + (to.x - from.x) * fd;
const fy = from.y + (to.y - from.y) * fd;
const td = to.value / length;
const tx = to.x + (from.x - to.x) * td;
const ty = to.y + (from.y - to.y) * td;
return `M ${fx},${fy} L ${tx},${ty}`;
};
linkElements.enter()
.append('path')
.classed('link', true)
.attr('d', linkPath)
.attr('marker-start', 'url(#arrowhead-from)')
.attr('marker-end', 'url(#arrowhead-to)');
text {
font-family: "Ubuntu";
font-size: 12px;
}
.link {
stroke: blue;
fill: none;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/6.7.0/d3.min.js"></script>
<svg width="400" height="400">
<defs>
<marker id="arrowhead-to" markerWidth="10" markerHeight="7"
refX="10" refY="3.5" orient="auto">
<polygon fill="blue" points="0 0, 10 3.5, 0 7" />
</marker>
<marker id="arrowhead-from" markerWidth="10" markerHeight="7"
refX="0" refY="3.5" orient="auto">
<polygon fill="blue" points="10 0, 0 3.5, 10 7" />
</marker>
</defs>
</svg>
关于javascript - 需要在d3中连接两个不同圆形打包布局的节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67614914/
我有 table 像这样 -------------------------------------------- id size title priority
我的应用在不同的 Activity (4 个 Activity )中仅包含横幅广告。所以我的疑问是, 我可以对所有横幅广告使用一个广告单元 ID 吗? 或者 每个 Activity 使用不同的广告单元
我有任意(但统一)数字列表的任意列表。 (它们是 n 空间中 bin 的边界坐标,我想绘制其角,但这并不重要。)我想生成所有可能组合的列表。所以:[[1,2], [3,4],[5,6]] 产生 [[1
我刚刚在学校开始学习 Java,正在尝试自定义控件和图形。我目前正在研究图案锁,一开始一切都很好,但突然间它绘制不正确。我确实更改了一些代码,但是当我看到错误时,我立即将其更改回来(撤消,ftw),但
在获取 Distinct 的 Count 时,我在使用 Group By With Rollup 时遇到了一个小问题。 问题是 Rollup 摘要只是所有分组中 Distinct 值的总数,而不是所有
这不起作用: select count(distinct colA, colB) from mytable 我知道我可以通过双选来简单地解决这个问题。 select count(*) from (
这个问题在这里已经有了答案: JavaScript regex whitespace characters (5 个回答) 2年前关闭。 你能解释一下为什么我会得到 false比较 text ===
这个问题已经有答案了: 奥 git _a (56 个回答) 已关闭 9 年前。 我被要求用 Javascript 编写一个函数 sortByFoo 来正确响应此测试: // Does not cras
所以,我不得不说,SQL 是迄今为止我作为开发人员最薄弱的一面。也许我想要完成的事情很简单。我有这样的东西(这不是真正的模型,但为了使其易于理解而不浪费太多时间解释它,我想出了一个完全模仿我必须使用的
这个问题在这里已经有了答案: How does the "this" keyword work? (22 个回答) 3年前关闭。 简而言之:为什么在使用 Objects 时,直接调用的函数和通过引用传
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicate: what is the difference between (.) dot operator and (-
我真的不明白这里发生了什么但是: 当我这样做时: colorIndex += len - stopPos; for(int m = 0; m < len - stopPos; m++) { c
思考 MySQL 中的 Group By 函数的最佳方式是什么? 我正在编写一个 MySQL 查询,通过 ODBC 连接在 Excel 的数据透视表中提取数据,以便用户可以轻松访问数据。 例如,我有:
我想要的SQL是这样的: SELECT week_no, type, SELECT count(distinct user_id) FROM group WHERE pts > 0 FROM bas
商店表: +--+-------+--------+ |id|name |date | +--+-------+--------+ |1 |x |Ma
对于 chrome 和 ff,当涉及到可怕的 ie 时,这个脚本工作完美。有问题 function getY(oElement) { var curtop = 0; if (oElem
我现在无法提供代码,因为我目前正在脑海中研究这个想法并在互联网上四处乱逛。 我了解了进程间通信和使用共享内存在进程之间共享数据(特别是结构)。 但是,在对保存在不同 .c 文件中的程序使用 fork(
我想在用户集合中使用不同的功能。在 mongo shell 中,我可以像下面这样使用: db.users.distinct("name"); 其中名称是用于区分的集合字段。 同样我想要,在 C
List nastava_izvjestaj = new List(); var data_context = new DataEvidencijaDataContext();
我的 Rails 应用程序中有 Ransack 搜索和 Foundation,本地 css 渲染正常,而生产中的同一个应用程序有一个怪癖: 应用程序中的其他内容完全相同。 我在 Chrome 和 Sa
我是一名优秀的程序员,十分优秀!