- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试复制以下 D3 可缩放树形图,以便更好地了解 D3 的工作原理:
https://secure.polisci.ohio-state.edu/faq/d3/zoomabletreemap.htm
TL;DR:我只看到 JSON 对象的前两个子对象,而不是孙对象等等。当我单击其中一个子节点时,浏览器中会打开一个空的 HTML 文档(而不是“http://polisci.osu.edu/”,这是单击原始俄亥俄州树状图中的叶节点时所得到的内容)。
我的调试尝试:在我的控制台中,作为测试,我将“zoomabletreemap.json”中的 JSON 值存储为名为“treemap”的变量,并且我可以访问“treemap.children[0].children”等属性。但是,当我尝试通过在脚本中添加 console.log 语句来输出相同的子项时,我得到“未定义”。例如,在我的脚本代码中标记为:
/* write children rectangles */
我添加了以下 console.log 语句:
g.selectAll(".child")
.data(function(d) {
console.log(d);
console.log(d.children);
return d.children || [d];
})
以下是输出:
Object {name: "International Relations", value: 42257, depth: 1, parent: Object, area: 0.6293113718949187…}
area: 0.6293113718949187
depth: 1
dx: 620
dy: 302.06945850956095
name: "International Relations"
parent: Object
value: 42257
x: 0
y: 0
z: true
__proto__: Object
undefined
Object {name: "Political Methodology", value: 24891, depth: 1, parent: Object, area: 0.37068862810508135…}
area: 0.37068862810508135
depth: 1
dx: 620
dy: 177.93054149043905
name: "Political Methodology"
parent: Object
value: 24891
x: 0
y: 302.06945850956095
z: false
__proto__: Object
undefined
显然,前 2 个子节点(“国际关系”和“政治方法论”)以某种方式被覆盖,这将删除所有子节点的“子”属性。我通过 http://prettydiff.com 将我的代码与原始源代码进行了比较检查代码差异,我没有看到任何显着差异。谁能告诉我我做错了什么?
这是一个我希望可以工作的 JS Fiddle,但没有:
我的 HTML 和 JS 脚本如下:
<!DOCTYPE html>
<meta charset="utf-8">
<title>Zoomable Treemap</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="../d3.v3/d3.v3.js"></script>
<link rel="stylesheet" href="example.css">
<p id="chart">
<script>
var margin = {top: 20, right: 0, bottom: 0, left: 0},
width = 620,
height = 500 - margin.top - margin.bottom,
formatNumber = d3.format(",d"),
transitioning;
/* create x and y scales */
var x = d3.scale.linear()
.domain([0, width])
.range([0, width]);
var y = d3.scale.linear()
.domain([0, height])
.range([0, height]);
var treemap = d3.layout.treemap()
.children(function(d, depth) {
return depth ? null : d.children;
})
.sort(function(a, b) { return a.value - b.value; })
.ratio(height / width * 0.5 * (1 + Math.sqrt(5)))
.round(false);
/* create svg */
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.bottom + margin.top)
.style("margin-left", -margin.left + "px")
.style("margin.right", -margin.right + "px")
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")")
.style("shape-rendering", "crispEdges");
var grandparent = svg.append("g")
.attr("class", "grandparent");
grandparent.append("rect")
.attr("y", -margin.top)
.attr("width", width)
.attr("height", margin.top);
grandparent.append("text")
.attr("x", 6)
.attr("y", 6 - margin.top)
.attr("dy", ".75em");
/* load in data, display root */
d3.json("zoomabletreemap.json", function(root) {
initialize(root);
accumulate(root);
layout(root);
display(root);
function initialize(root) {
root.x = root.y = 0;
root.dx = width;
root.dy = height;
root.depth = 0;
}
// Aggregate the values for internal nodes. This is normally done by the
// treemap layout, but not here because of our custom implementation.
function accumulate(d) {
return d.children
? d.value = d.children.reduce(function(p, v) { return p + accumulate(v); }, 0)
: d.value;
}
// Compute the treemap layout recursively such that each group of siblings
// uses the same size (1×1) rather than the dimensions of the parent cell.
// This optimizes the layout for the current zoom state. Note that a wrapper
// object is created for the parent node for each group of siblings so that
// the parent’s dimensions are not discarded as we recurse. Since each group
// of sibling was laid out in 1×1, we must rescale to fit using absolute
// coordinates. This lets us use a viewport to zoom.
function layout(d) {
if (d.children) {
treemap.nodes({children: d.children});
d.children.forEach(function(c) {
c.x = d.x + c.x * d.dx;
c.y = d.y + c.y * d.dy;
c.dx *= d.dx;
c.dy *= d.dy;
c.parent = d;
layout(c);
});
}
}
/* display show the treemap and writes the embedded transition function */
function display(d) {
/* create grandparent bar at top */
grandparent
.datum(d.parent)
.on("click", transition)
.select("text")
.text(name(d));
var g1 = svg.insert("g", ".grandparent")
.datum(d)
.attr("class", "depth");
/* add in data */
var g = g1.selectAll("g")
.data(d.children)
.enter().append("g");
/* transition on child click */
g.filter(function(d) { return d.children; })
.classed("children", true)
.on("click", transition);
/* write children rectangles */
g.selectAll(".child")
.data(function(d) {
return d.children || [d];
})
.enter().append("rect")
.attr("class", "child")
.call(rect);
/* write parent rectangle */
g.append("rect")
.attr("class", "parent")
.call(rect)
/* open new window based on the json's URL value for leaf nodes */
/* Chrome displays this on top */
.on("click", function(d) {
if(!d.children){
window.open(d.url);
}
})
.append("title")
.text(function(d) { return formatNumber(d.value); });
/* Adding a foreign object instead of a text object, allows for text wrapping */
g.append("foreignObject")
.call(rect)
/* open new window based on the json's URL value for leaf nodes */
/* Firefox displays this on top */
.on("click", function(d) {
if(!d.children){
window.open(d.url);
}
})
.attr("class","foreignobj")
.append("xhtml:div")
.attr("dy", ".75em")
.html(function(d) { return d.name; })
.attr("class","textdiv"); //textdiv class allows us to style the text easily with CSS
/* create transition function for transitions */
function transition(d) {
if (transitioning || !d) return;
transitioning = true;
var g2 = display(d),
t1 = g1.transition().duration(750),
t2 = g2.transition().duration(750);
// Update the domain only after entering new elements.
x.domain([d.x, d.x + d.dx]);
y.domain([d.y, d.y + d.dy]);
// Enable anti-aliasing during the transition.
svg.style("shape-rendering", null);
// Draw child nodes on top of parent nodes.
svg.selectAll(".depth").sort(function(a, b) { return a.depth - b.depth; });
// Fade-in entering text.
g2.selectAll("text").style("fill-opacity", 0);
g2.selectAll("foreignObject div").style("display", "none"); /*added*/
// Transition to the new view.
t1.selectAll("text").call(text).style("fill-opacity", 0);
t2.selectAll("text").call(text).style("fill-opacity", 1);
t1.selectAll("rect").call(rect);
t2.selectAll("rect").call(rect);
t1.selectAll(".textdiv").style("display", "none"); /* added */
t1.selectAll(".foreignobj").call(foreign); /* added */
t2.selectAll(".textdiv").style("display", "block"); /* added */
t2.selectAll(".foreignobj").call(foreign); /* added */
// Remove the old node when the transition is finished.
t1.remove().each("end", function() {
svg.style("shape-rendering", "crispEdges");
transitioning = false;
});
}//endfunc transition
return g;
}//endfunc display
function text(text) {
text.attr("x", function(d) { return x(d.x) + 6; })
.attr("y", function(d) { return y(d.y) + 6; });
}
function rect(rect) {
rect.attr("x", function(d) { return x(d.x); })
.attr("y", function(d) { return y(d.y); })
.attr("width", function(d) { return x(d.x + d.dx) - x(d.x); })
.attr("height", function(d) { return y(d.y + d.dy) - y(d.y); });
}
function foreign(foreign){ /* added */
foreign.attr("x", function(d) { return x(d.x); })
.attr("y", function(d) { return y(d.y); })
.attr("width", function(d) { return x(d.x + d.dx) - x(d.x); })
.attr("height", function(d) { return y(d.y + d.dy) - y(d.y); });
}
function name(d) {
return d.parent ? name(d.parent) + "." + d.name : d.name;
}
});
</script>
我的代码引用文件“zoomabletreemap.json”,其中包含以下代码:
{
"name": "Sitemap",
"children": [
{
"name": "International Relations",
"children": [
{
"name": "Systemic Theory",
"children": [
{"name": "Great Powers", "value": 3938, "url": "http://polisci.osu.edu"},
{"name": "Systemic Politics", "value": 743, "url": "http://polisci.osu.edu"}
]
},
{
"name": "International Conflict",
"children": [
{"name": "Systemic Politics", "value": 3416, "url": "http://google.com"},
{"name": "Causal Complexity", "value": 3416, "url": "http://bing.com"},
{"name": "Deadly Doves", "value": 3416, "url": "http://polisci.osu.edu"},
{"name": "Politcal Irrelevance", "value": 3416, "url": "http://polisci.osu.edu"},
{"name": "The Fog of Peace: Uncertainty, War, and the Resumption of International Crises, <i>manuscript</i>", "value": 3416, "url": "http://polisci.osu.edu"},
{"name": "Greed or Opportunity? Refining our Understanding of the Origins of Civil Wars, <i>manuscript</i>", "value": 3416, "url": "http://polisci.osu.edu"}
]
},
{
"name": "Foreign Policy",
"children": [
{"name": "The Myth of American Isolationism", "value": 3416, "url": "http://polisci.osu.edu"}
]
},
{
"name": "Courses",
"children": [
{"name": "IS 201", "value": 3416, "url": "http://polisci.osu.edu"},
{"name": "PS 544", "value": 3416, "url": "http://polisci.osu.edu"},
{"name": "PS 848", "value": 3416, "url": "http://polisci.osu.edu"}
]
},
{
"name": "Dataverse",
"children": [
{"name": "Dataverse", "value": 3416, "url": "http://polisci.osu.edu"}
]
}
]
},
{
"name": "Political Methodology",
"children": [
{
"name": "Theory and Methdology",
"children": [
{"name": "Interactions and Causal Complexity", "value": 3938, "url": "http://polisci.osu.edu"},
{"name": "Theory and Methodology", "value": 743, "url": "http://polisci.osu.edu"},
{"name": "Software", "value": 743, "url": "http://polisci.osu.edu"},
{"name": "Courses", "value": 743, "url": "http://polisci.osu.edu"}
]
},
{
"name": "Insteractions and Causal Cmplexity",
"children": [
{"name": "Hypothesis Testing and Multiplicative Interation Terms", "value": 3938, "url": "http://polisci.osu.edu"},
{
"name": "Causal Complexity",
"children": [
{"name": "Causal Complexity and the Study of Politics", "value": 3938, "url": "http://polisci.osu.edu"},
{"name": "Political Irrelevance", "value": 743, "url": "http://polisci.osu.edu"},
{"name": "boolean3 package for R", "value": 743, "url": "http://polisci.osu.edu"}
]
}
]
},
{
"name": "Software",
"children": [
{"name": "boolean3 package for R", "value": 3938, "url": "http://polisci.osu.edu"}
]
},
{
"name": "Courses",
"children": [
{"name": "PS 4781", "value": 3938, "url": "http://polisci.osu.edu"},
{"name": "PS 867", "value": 743, "url": "http://polisci.osu.edu"},
{"name": "PS 846", "value": 743, "url": "http://polisci.osu.edu"}
]
}
]
}
]
}
最佳答案
最后,我从最新版本的 D3.js 切换到版本 2。所以我采用了从 D3 网站获得的代码:
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
...并将其切换为:
<script src="http://d3js.org/d3.v2.min.js" charset="utf-8"></script>
效果很好!
关于javascript - D3 树形图 - 递归框未出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21587608/
我有一个 html 格式的表单: 我需要得到 JavaScript在value input 字段执行,但只能通过表单的 submit .原因是页面是一个模板所以我不控制它(不能有
我管理的论坛是托管软件,因此我无法访问源代码,我只能向页面添加 JavaScript 来实现我需要完成的任务。 我正在尝试用超链接替换所有页面上某些文本关键字的第一个实例。我还根据国家/地区代码对这些
我正在使用 JS 打开新页面并将 HTML 代码写入其中,但是当我尝试使用 document.write() 在新页面中编写 JS 时功能不起作用。显然,一旦看到 ,主 JS 就会关闭。用于即将打开的
提问不是为了解决问题,提问是为了更好地理解系统 专家!我知道每当你将 javascript 代码输入 javascript 引擎时,它会立即由 javascript 引擎执行。由于没有看过Engi
我在一个文件夹中有两个 javascript 文件。我想将一个变量的 javascript 文件传递到另一个。我应该使用什么程序? 最佳答案 window.postMessage用于跨文档消息。使
我有一个练习,我需要输入两个输入并检查它们是否都等于一个。 如果是 console.log 正则 console.log false 我试过这样的事情: function isPositive(fir
我正在做一个Web应用程序,计划允许其他网站(客户端)在其页面上嵌入以下javascript: 我的网络应用程序位于 http://example.org 。 我不能假设客户端网站的页面有 JQue
目前我正在使用三个外部 JS 文件。 我喜欢将所有三个 JS 文件合而为一。 尽一切可能。我创建 aio.js 并在 aio.js 中 src="https://code.jquery.com/
我有例如像这样的数组: var myArray = []; var item1 = { start: '08:00', end: '09:30' } var item2 = {
所以我正在制作一个 Chrome 扩展,它使用我制作的一些 TamperMonkey 脚本。我想要一个“主”javascript 文件,您可以在其中包含并执行其他脚本。我很擅长使用以下行将其他 jav
我有 A、B html 和 A、B javascript 文件。 并且,如何将 A JavaScript 中使用的全局变量直接移动到 B JavaScript 中? 示例 JavaScript) va
我需要将以下整个代码放入名为 activate.js 的 JavaScript 中。你能告诉我怎么做吗? var int = new int({ seconds: 30, mark
我已经为我的 .net Web 应用程序创建了母版页 EXAMPLE1.Master。他们的 I 将值存储在 JavaScript 变量中。我想在另一个 JS 文件中检索该变量。 示例1.大师:-
是否有任何库可以用来转换这样的代码: function () { var a = 1; } 像这样的代码: function () { var a = 1; } 在我的浏览器中。因为我在 Gi
我收到语法缺失 ) 错误 $(document).ready(function changeText() { var p = document.getElementById('bidp
我正在制作进度条。它有一个标签。我想调整某个脚本完成的标签。在找到可能的解决方案的一些答案后,我想出了以下脚本。第一个启动并按预期工作。然而,第二个却没有。它出什么问题了?代码如下: HTML:
这里有一个很简单的问题,我简单的头脑无法回答:为什么我在外部库中加载时,下面的匿名和onload函数没有运行?我错过了一些非常非常基本的东西。 Library.js 只有一行:console.log(
我知道 javascript 是一种客户端语言,但如果实际代码中嵌入的 javascript 代码以某种方式与在控制台上运行的代码不同,我会尝试找到答案。让我用一个例子来解释它: 我想创建一个像 Mi
我如何将这个内联 javascript 更改为 Unobtrusive JavaScript? 谢谢! 感谢您的回答,但它不起作用。我的代码是: PHP js文件 document.getElem
我正在寻找将简单的 JavaScript 对象“转储”到动态生成的 JavaScript 源代码中的最优雅的方法。 目的:假设我们有 node.js 服务器生成 HTML。我们在服务器端有一个对象x。
我是一名优秀的程序员,十分优秀!