gpt4 book ai didi

javascript - d3.js 圆绘图在第一次尝试加载时无法正常工作

转载 作者:行者123 更新时间:2023-11-30 07:39:46 25 4
gpt4 key购买 nike

这是我的 d3.js 代码:

<script>


var width = 300,
height = 300,
margin = 20;
var x_centre = width/2;
var y_centre = height/2;
var nuclear_radius = 15;

var vis = d3.select("#chart_container").append("svg:svg")
.attr("width", width)
.attr("height", height);

var radiuses = [1,2,3];

var multiplier = (d3.min([width, height]) - 2*margin - nuclear_radius) / (d3.max(radiuses) * 2);

var shells = vis.selectAll("circle.shell")
.data(radiuses)
.enter().append("circle")
.attr("class", "shell")
.attr("cx", x_centre)
.attr("cy", y_centre)
.attr("r", function(d, i) {
return (d * multiplier);
});

var nucleus = vis.selectAll('circle.nucleus')
.data(['nucleus'])
.enter().append("circle")
.attr("class", "nucleus")
.attr("cx", x_centre)
.attr("cy", y_centre)
.attr("r", nuclear_radius);


function showGraph(de) {
var electrons = de


var radius_counts = {};
for (var i = 0; i < electrons.length; i++) {
if (electrons[i].distance in radius_counts) {
radius_counts[electrons[i].distance] += 1;
} else {
radius_counts[electrons[i].distance] = 1;
}
}

// Calculate the x- and y-coordinate values
// for each electron.
var keep_count = {};
electrons.forEach(function(d) {
var siblings = radius_counts[d.distance];
if (d.distance in keep_count) {
keep_count[d.distance] += 1;
} else {
keep_count[d.distance] = 1;
}
var angle = (360/siblings) * keep_count[d.distance];
var hyp = d.distance * multiplier;
if (angle <= 90) {
var use_angle = (90 - angle) * (Math.PI/180);
var opp = Math.sin(use_angle) * hyp;
var adj = Math.cos(use_angle) * hyp;
d.x = x_centre + adj;
d.y = y_centre - opp;
} else if (angle <= 180) {
var use_angle = (180 - angle) * (Math.PI/180);
var opp = Math.sin(use_angle) * hyp;
var adj = Math.cos(use_angle) * hyp;
d.x = x_centre + opp;
d.y = y_centre + adj;
} else if (angle <= 270) {
var use_angle = (270 - angle) * (Math.PI/180);
var opp = Math.sin(use_angle) * hyp;
var adj = Math.cos(use_angle) * hyp;
d.x = x_centre - adj;
d.y = y_centre + opp;
} else {
var use_angle = (360 - angle) * (Math.PI/180);
var opp = Math.sin(use_angle) * hyp;
var adj = Math.cos(use_angle) * hyp;
d.x = x_centre - opp;
d.y = y_centre - adj;
}

});

var electron_nodes = vis.selectAll('circle.electron')
.data(electrons)
.enter().append("circle")
.attr("class", "electron")
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; })
.attr("r", 7)
.on("mouseover", function(d) {
// how to drag the electron around the circle?
});
var svgData = vis.selectAll("circle.electron")
.data(electrons);
svgData.exit().remove();
}

</script>

现在我每次点击事件时都调用上面的 showGraph js 函数,它带有 count 参数

function add_py()
{
var count = $( "#count" ).val();
$.ajax({
type: "get",
url: "abc.py",
data: {'count': count},
datatype:"script",
async: false,
success: function(response) {
var data= JSON.parse(response);
//alert(response)
showGraph(data);
}, // success closed
error:function(xhr,err)
{
alert("Error connecting to server, please contact system administator.");
}
})//ajax closed
}

现在当我给出计数 10 时,SVG 是这样的:

<svg width="300" height="300">
<circle class="shell" cx="150" cy="150" r="40.833333333333336">
<circle class="shell" cx="150" cy="150" r="81.66666666666667">
<circle class="shell" cx="150" cy="150" r="122.5">
<circle class="nucleus" cx="150" cy="150" r="15">
<circle class="electron" cx="231.66666666666669" cy="150" r="7">
<circle class="electron" cx="256.08811196359375" cy="211.25" r="7">
<circle class="electron" cx="43.91188803640625" cy="211.25" r="7">
<circle class="electron" cx="185.36270398786456" cy="170.41666666666669" r="7">
<circle class="electron" cx="114.63729601213541" cy="170.41666666666666" r="7">
<circle class="electron" cx="150" cy="231.66666666666669" r="7">
<circle class="electron" cx="150" cy="27.5" r="7">
<circle class="electron" cx="150" cy="109.16666666666666" r="7">
<circle class="electron" cx="68.33333333333333" cy="150" r="7">
<circle class="electron" cx="150" cy="68.33333333333333" r="7">
</svg>

使用 class electron 和不同的 cx 和 cy plots 可以正常工作 10 个圆圈。但是,如果我首先给出 7 或小于 10 然后 10 的任何值,则 svg 就像:

<svg width="300" height="300">
<circle class="shell" cx="150" cy="150" r="40.833333333333336">
<circle class="shell" cx="150" cy="150" r="81.66666666666667">
<circle class="shell" cx="150" cy="150" r="122.5">
<circle class="nucleus" cx="150" cy="150" r="15">
<circle class="electron" cx="150" cy="68.33333333333333" r="7">
<circle class="electron" cx="150" cy="272.5" r="7">
<circle class="electron" cx="150" cy="27.5" r="7">
<circle class="electron" cx="150" cy="190.83333333333334" r="7">
<circle class="electron" cx="150" cy="109.16666666666666" r="7">
<circle class="electron" cx="150" cy="231.66666666666669" r="7">
<circle class="electron" cx="150" cy="27.5" r="7">
<circle class="electron" cx="150" cy="109.16666666666666" r="7">
<circle class="electron" cx="68.33333333333333" cy="150" r="7">
<circle class="electron" cx="150" cy="68.33333333333333" r="7">
</svg>

class electron 精确绘制 10 个圆,但是 cxcy 重复,所以它们重叠。但是如果我第一次给 count 10,它不会重叠。如果我给一个大数然后小数,它工作正常。但不是小则大。在此先感谢您对我的帮助。

最佳答案

问题是当你从 7 到 10 时,你永远不会更新现有的“电子”。在你的代码中

var electron_nodes = vis.selectAll('circle.electron')
.data(electrons)
.enter().append("circle")
.attr("class", "electron")
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; })
.attr("r", 7)
.on("mouseover", function(d) {
// how to drag the electron around the circle?
});

enter() 之后的所有内容仅适用于添加的新元素。

这是一个常见的混淆;我今天早些时候回答了另一个类似的问题,所以我将在这里尝试非常清楚地解释它(然后每个人以后都可以链接到这个解释!)。

链接方法是 D3 的重要组成部分,但它只能做这么多。每个人都想将所有东西链接在一起,但您必须跟踪您的链何时分离成 enter()exit() 选择,然后返回到主链选择更新。

一般更新例程通常有四个“链”(每个链都以 ; 结尾):

  • 选择链,选择元素并更新数据并将选择保存在一个变量中,例如您可以将其命名为var元素

  • Enter Chain,以 elements.enter().(或您用来保存 Select Chain 的任何变量名称)开始,附加新元素并设置任何将保持不变的属性或样式(即不会在更新时更改)

  • 退出链,以 elements.exit(). 开始,带有转换(如果使用)和 remove()

  • 一个更新链,从您保存的选择变量开始,然后是设置需要更新的属性或样式的所有方法;这还将首次在您刚刚使用 .enter()

  • 创建的元素上设置这些属性

是的,您可以做不同的事情,但前提是您清楚地了解正在发生的事情以及为什么要改变这种模式。

这种方法还避免了代码中的重复,即重新选择电子并重新应用数据以获取 exit() 选择。

因此对于您的程序,4 链更新方法的应用如下所示:

//chain 1: select
var electron_nodes = vis.selectAll('circle.electron')
.data(electrons);

//chain 2: enter
electron_nodes.enter().append("circle")
.attr("class", "electron")
.on("mouseover", function(d) {
// Although this function uses data at the time the event happens,
// the actual definition of the function never changes,
// so you only need to attach it once when you create the node.
})
.attr("r", 7);

//chain 3: exit
electron_nodes.exit().remove();

//chain 4: update
electron_nodes.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });

抱歉这么久才回答你的问题;这是一个相当复杂的程序,可能会吓跑所有数学函数的人。将来,您不需要包含 AJAX 方法(假设您已检查它返回正确的值),但包含 AJAX 请求返回的数据示例会有所帮助。当然,JSFiddle 或 Tributary 上的工作示例更好!

最好的,
--ABR

关于javascript - d3.js 圆绘图在第一次尝试加载时无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20688115/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com