- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以我使用 d3 的库构建了一棵树,它可以通过动画折叠/展开。我对 d3 还是很陌生,我不确定如何将我的特定样式添加到战斗中。关于如何设置样式的任何建议<g>
标签?
相关代码如下:
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.node {
cursor: pointer;
}
.node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 3px;
}
.node text {
font: 12px sans-serif;
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 2px;
}
</style>
<body>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var margin = {
top: 20,
right: 120,
bottom: 20,
left: 120
},
width = $(window).width() - margin.right - margin.left,
height = $(window).height() - margin.top - margin.bottom;
var i = 0,
duration = 750,
root;
var tree = d3.layout.tree()
.size([height, width])
var diagonal = d3.svg.diagonal()
.projection(function(d) {
return [d.y, d.x];
});
buildJson(function (data) {
var svg = d3.select("body").append("svg")
.attr("width", width + margin.right + margin.left)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
root = data;
root.x0 = height / 2;
root.y0 = 0;
function collapse(d) {
if (d.children) {
d._children = d.children;
d._children.forEach(collapse);
d.children = null;
}
}
root.children.forEach(collapse);
update(root);
d3.select(self.frameElement).style("height", "800px");
function update(source) {
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Compute the new tree layout.
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
var nodes = tree.nodes(root).reverse(),
links = tree.links(nodes);
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Normalize for fixed-depth.
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
nodes.forEach(function(d) {
d.y = d.depth * 350;
});
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Update the nodes…
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
var node = svg.selectAll("g.node")
.data(nodes, function(d) {
return d.id || (d.id = ++i);
});
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Enter any new nodes at the parent's previous position.
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
var nodeEnter = node.enter().append("g")
.attr("class", "node")
.attr("transform", function(d) {
return "translate(" + source.y0 + "," + source.x0 + ")";
})
.on("click", click);
nodeEnter.append("circle")
.attr("r", 1e-6)
.style("fill", function(d) {
return d._children ? "lightsteelblue" : "#fff";
});
nodeEnter.append("text")
.attr("x", function(d) {
return d.children || d._children ? -12 : 12;
})
.attr("dy", ".35em")
.attr("text-anchor", function(d) {
return d.children || d._children ? "end" : "start";
})
.text(function(d) {
return d.name;
})
.style("fill-opacity", 1e-6);
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Transition nodes to their new position.
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
var nodeUpdate = node.transition()
.duration(duration)
.attr("transform", function(d) {
return "translate(" + d.y + "," + d.x + ")";
});
nodeUpdate.select("circle")
.attr("r", 4.5)
.style("fill", function(d) {
return d._children ? "lightsteelblue" : "#fff";
});
nodeUpdate.select("text")
.style("fill-opacity", 1);
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Transition exiting nodes to the parent's new position.
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
var nodeExit = node.exit().transition()
.duration(duration)
.attr("transform", function(d) {
return "translate(" + source.y + "," + source.x + ")";
})
.remove();
nodeExit.select("circle")
.attr("r", 1e-6);
nodeExit.select("text")
.style("fill-opacity", 1e-6);
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Update the links…
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
var link = svg.selectAll("path.link")
.data(links, function(d) {
return d.target.id;
});
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Enter any new links at the parent's previous position.
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
link.enter().insert("path", "g")
.attr("class", "link")
.attr("d", function(d) {
var o = {
x: source.x0,
y: source.y0
};
return diagonal({
source: o,
target: o
});
});
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Transition links to their new position.
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
link.transition()
.duration(duration)
.attr("d", diagonal);
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Transition exiting nodes to the parent's new position.
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
link.exit().transition()
.duration(duration)
.attr("d", function(d) {
var o = {
x: source.x,
y: source.y
};
return diagonal({
source: o,
target: o
});
})
.remove();
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Stash the old positions for transition.
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
nodes.forEach(function(d) {
d.x0 = d.x;
d.y0 = d.y;
});
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Remove Root Node, ultra mega important!!!
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
node.each(function(d){
if (d.name == "flare")
d3.select(this).remove();});
link.each(function(d){
if (d.source.name == "flare")
d3.select(this).remove();});
}
// Toggle children on click.
function click(d) {
if (d.children) {
d._children = d.children;
d.children = null;
}
else {
d.children = d._children;
d._children = null;
}
// If the node has a parent, then collapse its child nodes
// except for this clicked node.
if (d.parent) {
d.parent.children.forEach(function(element) {
if (d !== element) {
collapse(element);
}
});
}
update(d);
}
function collapse(d) {
if (d.children) {
d._children = d.children;
d._children.forEach(collapse);
d.children = null;
}
}
});
// Get Data and format it properly for presentation
function getJsonData (pathToData, callback) {
$.getJSON( pathToData, function() {
console.log( "Retrieving: " + pathToData );
}).done(function(data) {
callback({
error: false,
data: data
});
})
.fail(function() {
callback({
error: true
});
});
}
function buildJson (builder) {
var runOnce = true, categories_raw, technologies_raw, formatted_json = {
'name' : 'flare',
'children' : []
}
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// First get all of the categories and subcategories
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
getJsonData('assets/json/categories.json', function (data) {
if (!data.error) {
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Categories and Subcategories Retreived now build it out
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
categories_raw = data.data
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Technologies retreived now build it out
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
getJsonData('assets/json/technologies.json', function (data) {
if (!data.error) {
technologies_raw = data.data
var categories = categories_raw[0], subcategories = categories_raw[1], technologies = technologies_raw, formatted_categories = [], formatted_subcategories = [], formatted_technologies = []
subcategories.forEach ( function (value, index) {
formatted_subcategories.push({
'name' : value.label,
'id' : value.id,
'children' : [],
'parent' : value.parent
})
})
technologies.forEach ( function (value, index) {
var result = formatted_subcategories.filter(function( obj ) {
return obj.id == value.subCat;
});
if (typeof result[0] != 'undefined') {
result[0].children.push({
'name' : value.label
})
}
})
categories.forEach ( function (value, index) {
var result = formatted_subcategories.filter(function( obj ) {
return obj.parent == value.id;
});
formatted_json.children.push({
'name' : value.label,
'id' : value.id,
'children' : result
})
})
builder(formatted_json)
}
})
}
})
}
</script>
最佳答案
虽然这被否决了,但我仍然认为存在答案很重要。
https://gist.github.com/Quixomatic/f39d338bb4b4790d38f7d08b52f34b98
此链接指向显示我对问题的解决方案的要点。感谢您的帮助,没有人。
关于javascript - d3 tree <g> 标签 padding/border 整体样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37212317/
我正在阅读Head First Design Patterns一书,在第382页上说: Composite Patterns is used when you have collection of o
我将我的电脑用作 wifi 热点,并将其他设备连接到它。然后使用wireshark,我可以看到特定设备上发送/接收的数据包,但是我怎样才能看到设备正在查看的完整网页而不是单独的数据包? 最佳答案 尝试
在 URL 中打开我的 Jenkins 时,我似乎无法登录它会抛出消息“用户缺少整体/读取权限”。我试过answer来自类似的问题,但禁用安全性不起作用。 Jenkins 继续抛出错误。有人建议我一起
我已经使用工具分配测试了我的应用程序并得到了这张图片: 如图所示,我的应用程序正常工作,但它通常以总字节数计值吗?我担心“#Allocations (Net/Overall)”,因为它的颜色是红色。这
我遵循教程 Deployment on Tomcat without modification of monitored webapps (beta) .监控站点正在运行,我可以看到统计页面。问题是
所以我有一个 div,其中整个东西都是一个 anchor 标记,我试图控制颜色在悬停时的显示方式并获得不同的结果。希望我能用 CSS 做到这一点。发生的事情是悬停,一个文本发生变化,但另一个没有。但是
我创建了一个程序,您可以在其中输入行驶的英里数和每 jar 油使用的加仑数,该程序会显示每 jar 油的 mpg。我使用的是 Visual Studio 2010。当我输入标记值 -1 时,系统会给出
我有一个由 N 个节点组成的 zookeeper 集群(彼此了解)。如果我在 zk 客户端连接字符串中只传递 M < N 个节点地址怎么办?集群的行为是什么? 在更具体的情况下,如果我只从集群中传递
我一直在试图弄清楚当使用诸如 pushViewController:animated、presentModalViewController:animated 和 UITabBarViewControl
我已经在 VIM 中安装了 minikube,并且我拥有具有所有权限的服务帐户 token 。是否有来自 kubernetes 的 API 来获取资源使用情况(总体)。 最佳答案 要获取 CPU 和内
如何通过 HTTP 客户端(例如 CURL、Insomnia、Postman 等)快速使用使用 JWT token 的 JHipster 生成的应用程序? 最佳答案 嗯,我研究了一段时间,发现你必须遵
我是一名优秀的程序员,十分优秀!