- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
场景:
我从标准的 D3 v3 Force Layout 开始 我从网上的一个例子中得到的。
我想加强这一点,我的目标是:
我想要的行为类型的一个例子是这个奇妙的图表,其中拖动阈值 slider “弹出”链接而无需完全重新渲染,因此很容易看到已添加/删除的内容:http://jsfiddle.net/simonraper/TdHgx/?utm_source=website&utm_medium=embed&utm_campaign=TdHgx
问题:
这是我目前所拥有的示例:https://jsfiddle.net/samollason/uvqosxrr/3/
jsfiddle代码:
html:
<body>
<button id="update-button1">Update Data - Remove</button>
<button id="update-button2">Update Data - Add</button>
</body>
js:
var width = 400,
height = 500;
var force = d3.layout.force()
.size([width, height])
.charge(-400)
.linkDistance(40)
.on("tick", tick);
var drag = force.drag()
.on("dragstart", dragstart);
//Set up the force layout
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var link = svg.selectAll(".link"),
node = svg.selectAll(".node");
//we call this function when we first draw graph
var drawInit = function(graph){
link = link.data(graph.links, function(d) { return d.id; })
.enter().append("line")
.attr("class", "link");
node = node.data(graph.nodes, function(d) { return d.id; })
.enter().append("circle")
.attr("class", "node")
.attr("r", 12)
.on("dblclick", dblclick)
.call(drag);
force
.nodes(graph.nodes)
.links(graph.links)
.start();
};
//call this function whenever we want to update the graph
var update = function(graph){
link = link.data(graph.links, function(d) { return d.id; });
link.exit().remove();
link
.enter().append("line")
.attr("class", "link");
node = node.data(graph.nodes, function(d) { return d.id; });
//Remove nodes not in new data set
node.exit().remove();
//For each datum in dataset that wasn't in old dataset append
circle
node.enter().append("circle")
.attr("class", "node")
.attr("r", 12)
.on("dblclick", dblclick)
.call(drag);
//Update the force layout graph
force
.nodes(graph.nodes)
.links(graph.links)
.start();
};
function tick() {
link.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
node.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
}
function dblclick(d) {
console.log("double clicked on " + d.name);
d3.select(this).classed("fixed", d.fixed = false);
}
function dragstart(d) {
d3.select(this).classed("fixed", d.fixed = true);
}
//data1 is used for our initial drawing
data1 = {
"nodes": [
{
"id":0,
"name": 0,
"group": 1,
"size": 10
},
{
"id":1,
"name": 1,
"group": 1,
"size": 10
},
{
"id":2,
"name": 2,
"group": 1,
"size": 20
},
{
"id":3,
"name": 3,
"group": 1,
"size": 30
},
{
"id":4,
"name": 4,
"group": 1,
"size": 25
}
],
"links": [
{
"source": 1, "target": 0, "value":1, "id":0
},
{
"source": 1, "target": 2, "value":1, "id":1
},
{
"source": 1, "target": 3, "value":1, "id":2
},
{
"source": 1, "target": 4, "value":1, "id":3
}
]
};
drawInit(data1);
//When user clicks on button update force layout graph *gracefully*
d3.select("#update-button1").on("click", function(e) {
var data2 = {
"nodes": [
{
"id": 0,
"name": 0,
"group": 1,
"size": 10
},
{
"id": 1,
"name": 1,
"group": 1,
"size": 10
},
{
"id": 2,
"name": 2,
"group": 1,
"size": 20
},
{
"id": 3,
"name": 3,
"group": 1,
"size": 30
}
],
"links": [
{
"source": 1, "target": 0, "value": 1, "id": 0
},
{
"source": 1, "target": 2, "value": 1, "id": 1
},
{
"source": 1, "target": 3, "value": 1, "id": 2
}
]
};
update(data2);
});
//When user clicks on button update force layout graph *gracefully*
d3.select("#update-button2").on("click", function(e) {
//this simulates removing a node
var data3 = {
"nodes": [
{
"id": 0,
"name": 0,
"group": 1,
"size": 10
},
{
"id": 1,
"name": 1,
"group": 1,
"size": 10
},
{
"id": 2,
"name": 2,
"group": 1,
"size": 20
},
{
"id": 3,
"name": 3,
"group": 1,
"size": 30
},
{
"id": 4,
"name": 4,
"group": 1,
"size": 30
},
{
"id": 5,
"name": 5,
"group": 1,
"size": 30
}
],
"links": [
{
"source": 1, "target": 0, "value": 1, "id": 0
},
{
"source": 1, "target": 2, "value": 1, "id": 1
},
{
"source": 1, "target": 3, "value": 1, "id": 2
},
{
"source": 1, "target": 4, "value": 1, "id": 3
},
{
"source": 1, "target": 5, "value": 1, "id": 4
}
]
};
update(data3);
});
最佳答案
我找到了我的问题的解决方案。从本质上讲,要实现“优雅”更新,必须改变最初分配给力布局对象“节点”/“链接”属性的数据而不是重新分配和覆盖它们。
这是我创建的示例:https://jsfiddle.net/thedev19/z3rwpcxp/27/
仍然可以从添加/删除了一些节点/链接的外部源加载数据,然后比较新提供的数据与分配给强制布局“节点”和“链接”的当前数据“属性”。然后适本地添加/删除节点/链接以改变最初在其属性中分配给力布局图的“节点”/“链接”数据。
jsfiddle代码:
<body>
<p>Click and drag nodes to 'stick' them to a desired location</p>
<p>Click button to see how we can 'gracefully' update the graph <br>
and add data without completely re-loading</p>
<button id="update1">Update - Click to add nodes</button>
</body>
js:
//Variables to set up SVG container
var width = 400,
height = 350;
//We initialise the force layout object here
var force = d3.layout.force()
.size([width, height])
.charge(-400)
.linkDistance(40)
.on("tick", tick);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
//Create a "g" container elements and create selections to reference throughout
var link = svg.append("g").selectAll(".link");
var node = svg.append("g").selectAll(".node");
var update = function(){
//Create an UPDATE selection by joining data with "link" element selection
link = link.data(graphData.links, function(d){ return d.id});
//Access ENTER selection (hangs off UPDATE selection)
//This represents newly added data that dont have DOM elements
//so we create and add a "line" element for each of these data
link
.enter().append("line")
.attr("class", "link");
//Access EXIT selection (hangs off UPDATE selection)
//This represents DOM elements for which there is now no corresponding data element
//so we remove these from DOM
link
.exit().remove();
//same update pattern for nodes
node = node.data(graphData.nodes);
node.
enter().append("circle")
.attr("class", "node")
.attr("r", 12)
.on("dblclick", dblclick)
.call(drag);
node.exit().remove();
force
.start();
};
function tick() {
link.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
node.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
}
function dblclick(d) {
d3.select(this).classed("fixed", d.fixed = false);
}
function dragstart(d) {
d3.select(this).classed("fixed", d.fixed = true);
}
function init(){
var data1 = {
"nodes": [
{
"id":0,
"name": 0,
"group": 1,
"size": 10
},
{
"id":1,
"name": 1,
"group": 1,
"size": 10
},
{
"id":2,
"name": 2,
"group": 1,
"size": 20
},
{
"id":3,
"name": 3,
"group": 1,
"size": 30
}
],
"links": [
{
"source": 0, "target": 1, "value":1, "id":0
},
{
"source": 0, "target": 2, "value":1, "id":1
},
{
"source": 0, "target": 3, "value":1, "id":2
}
]
};
graphData = data1;
drag = force.drag()
.on("dragstart", dragstart);
force.links(graphData.links);
force.nodes(graphData.nodes);
update()
}
init();
d3.select("#update1").on("click", function() {
//randomly select a (currently existing) node that our new node will link to
var sourceNodeId = Math.floor(Math.random() * (graphData.nodes.length-1));
//if there are n nodes currently (before we add a new one, below) then
//the new target node will be the (n+1)th node with an id of n (zero-indexing)
var newNodeId = graphData.nodes.length;
// if there are currently n links (before we add a new one, below) then
// the new link will have an id of n (first link has an id of 0)
var linkId = graphData.links.length;
graphData.links.push({
"source": sourceNodeId , "target": newNodeId, "value": 1, "id": linkId
});
graphData.nodes.push({
"id": newNodeId,
"name": newNodeId,
"group": 1,
"size": 30
});
update()
});
CSS:
.link {
stroke: #000;
stroke-width: 1.5px;
}
.node {
cursor: move;
fill: #ccc;
stroke: #000;
stroke-width: 1.5px;
}
.node.fixed {
fill: #f00;
}
关于javascript - D3 v3 Force Layout - 无需刷新即可优雅地添加/删除节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46467114/
您如何优雅编码同一tableView中的两种类型的单元格? 显然我可以这样: NSDictionary *cellInfo = [_userInformation objectAtIndex:inde
假设我正在编写一个仅包含标题或主要包含标题的库,并且具有以下代码: using my_type = int; namespace detail { inline void foo() { my
我正在使用复选框和输入进行一系列启用/禁用选择,我想知道我是否可以使用循环、变量或复合语句来简单地处理这个js?感觉就像是使用大量代码来实现相对简单的功能。 这是我正在做的事情的一个 fiddle :
我正在尝试为来自维基百科的 API 响应编写一个解析器。它真的很困惑,我已经求助于旧的 RegEx 来清理大部分东西。然而,我坚持这一点。考虑一个字符串: var a ="[[December 1]
我正在通过一个 channel 接收多个消息,并在对其进行迭代之后,我想保留最后一个元素以供进一步使用。我的第一个(可能很糟糕!)方法是声明一些变量,然后在每个循环中分配它。 let last = 0
我正在编写一个 PHP Web 应用程序,它将在不久的将来在生产环境下运行,而不是使用非用户友好的 die() , 我想我会想出一个 Class处理错误消息。 基本上,我的思考过程是这样的: 如果 W
我们有 elb 负载平衡 2 台运行 tomcat 作为应用程序服务器的 WAS 机器。要实现AWS环境下的不间断部署,我们应该, 选择部署目标 WAS。 让它停止来自 elb 的交易。(elb 暂停
何为pythonic? pythonic如果翻译成中文的话就是很python。很+名词结构的用法在中国不少,比如:很娘,很国足,很CCTV等等。 我的理解为,很+名词表达了一种特殊和强调的意味。
认为已经有对此的答案,但找不到。我一直在以某种方式解析方法选项,并想检查并确保它是最优雅/最简洁的方式。 这是我通常做的: def some_method *args options = args
我正在清理我的一个旧项目。它必须做的一件事是——给定笛卡尔网格系统和网格上的两个正方形,找到所有正方形的列表,连接这两个正方形中心的线将通过这些正方形。 这里的特殊情况是所有起点和终点都被限制在正方形
如何使系统 ( SystemB1 ) 访问另一个系统 ( SystemA::sub ) 的字段,就好像它是自己的字段一样? SystemA是一个拥有自己领域的实用系统 Sub* sub . Syste
我有一个包含约 8.000.000 条记录的 MySQL 数据库。因为我需要处理所有这些,所以我使用 BlockingQueue 作为生产者从数据库读取数据并将 1000 条记录放入队列中。 Cons
我正在让我的 HTTP 服务器正常关闭。我从帖子中获取了提示 here ,到目前为止,我的代码是这样设置的: func start() { //...... //START HTTP/
示例脚本只是“wc -m”命令的包装器,简单的符号计数器。我尝试只用“teststrings” slice 元素提供输入。并在输出监听器 goroutine 接收每个字符串的符号数。寻找一种让“wc”
我想干净/优雅地关闭 Internet Explorer。 taskkill 会关闭它,但是当重新打开它时,它会询问您是否要重新打开上一个 session 。 最佳答案 尝试 CloseMainWin
Haskell 的简洁和优雅给我留下了深刻的印象。但我在 .Net 公司工作,所以当我可以使用 F# 时我会使用它——我可能是全国数百个使用它的人中唯一的一个。 ADO.NET 或 F# 是否提供像
如果我们不想在我们的类中实现 init 方法,并且记住 NSObject 中的 init 只返回一个没有初始化的对象实例,如果我们已经得到了,我不明白调用 init 的意义带有分配的实例。我已经尝试过
我们的组织中有许多初级 Delphi 开发人员,作为向他们教授 Delphi 过程的一部分,我希望他们能够看到“干净”、编写良好、设计良好的 Delphi 代码。 我要寻找的一些标准包括: 优秀的类(
我有一个 3D 图像扫描(形状:335x306x306,总元素:31368060),我想用相同大小的 3D bool 掩码来掩盖它以返回相同大小的蒙版图像。 当我简单地用掩码索引数组时: masked
如何使适配器类适本地支持 const 和非 const 底层数据? 具体例子 RigidBody是描述对象物理属性的类。 这是其非常简化的版本(1D):- class RigidBody{ f
我是一名优秀的程序员,十分优秀!