所以我需要在同一个网站上放置两个d3js图表,我想用相同的选择元素控制它们。
首先,当我设法以我想要的方式工作第一个图形时,我只是复制了第二个图形的脚本,但是在不同的容器中。结果很糟糕。图形发生冲突,因为变量以相同的方式命名。
后来我区分了第一个图表中的所有可变数据,并在每个变量名称的末尾添加了_1
,并在变量名称的末尾添加了_2
。
现在图表正确显示。但我遇到的问题是我的更改功能,更改选择选项时调用。如果每个图形都有一个选择框,那么一切都很好,但是当我尝试设置它时,一个选择框控制两个图形我的时间不好。
代码非常长,所以我在这里只会提到我正在谈论的部分代码。整个代码和exapmle在这里:http://jsfiddle.net/g3MHp/
(p.s。第一个图表的脚本是html,我知道这不是jsfiddle的正确方法,但我想反映真实状态,如原始文档中那样)
所以,对于第一个例子,我必须注册选择框的更改:
d3.selectAll(".graph_change_1").on("change", change_1);
然后调用change_1
函数:
function change_1() {
graph_n_1 = this.value;
//remove guides
d3.selectAll(".guide_1").transition().duration(100).styleTween("opacity",
function() { return d3.interpolate(.5, 0); })
.remove()
if(graph_n_1 == "BPR"){
x_1.domain([0, dataX_1[0].cn_bpr_to]);
y_1.domain([0, dataY_1[0].bpr_to]);
}
if(graph_n_1 == "PR"){
x_1.domain([0, dataX_1[0].cn_pr_to]);
y_1.domain([0, dataY_1[0].pr_to]);
}
if(graph_n_1 == "assets"){
x_1.domain([0, dataX_1[0].cn_as_to]);
y_1.domain([0, dataY_1[0].as_to]);
}
// First transition the line & label to the new city.
var t0_1 = svg_1.transition().duration(750);
t0_1.selectAll(".line_1").attr("d", line_1);
// Then transition the y-axis.
yAxisRF_1 = yAxis_1.tickFormat( function(n){
if(graph_n_1 == "BPR"){ return n; }
if(graph_n_1 == "PR"){ return n; }
if(graph_n_1 == "assets"){
var nLen_1 = n.toString().length;
if(nLen_1> 12){
nLenS_1 = n/Math.pow(10,12);
addS_1 = "Bil.€";
}else if(nLen_1 > 9){
nLenS_1 = n/Math.pow(10,9);
addS_1 = "Md.€";
}else if(nLen_1 > 6){
nLenS_1 = n/Math.pow(10,6);
addS_1 = "Mio.€";
}else if(nLen_1 > 3){
nLenS_1 = n/Math.pow(10,3);
addS_1 = "T€";
}else{
nLenS_1 = 0/Math.pow(10,0);
addS_1 = "€";
}
var podlj_1 = nLen_1/3;
var podljR_1 = Math.round(podlj_1)
if (podlj_1 == podljR_1){
x2_1=0
}else{ x2_1=1 }
var Fn_1 = nLenS_1.toFixed(x2);
var FnR_1 = Fn_1.toString().replace(".0","").replace(".",",");
var FaddT_1 = addS_1;
return FnR_1+" "+FaddT_1;
}
});
xAxisRF_1 = xAxis_1.tickValues(x_1.domain())
var t1_1 = t0_1.transition();
t1_1.selectAll(".desc_val_1").text( function(){
if(graph_n_1 == "BPR"){ return "Business Page Rank (BPR)"; }
if(graph_n_1 == "PR"){ return "Page Rank (PR)"; }
if(graph_n_1 == "assets"){ return "Euro (€)"; }
})
t1_1.selectAll(".line_1").attr("d", line_1);
t1_1.selectAll(".y.axis_1").call(yAxisRF_1);
t1_1.selectAll(".x.axis_1").call(xAxisRF_1);
line_1.interpolate("basis")
.x(function(d) {
if(graph_n_1 == "BPR"){ return x_1(d.cn_bpr); }
if(graph_n_1 == "PR"){ return x_1(d.cn_pr); }
if(graph_n_1 == "assets"){ return x_1(d.cn_as); }
})
.y(function(d) { return y_1(d[graph_n_1]); });
svg_1.append("g")
.attr("class", "guide_1")
.data(dataC_1)
.append("line")
.attr("x1", function(d) {
if(graph_n_1 == "BPR"){ return +x_1(d.x3); }
if(graph_n_1 == "PR"){ return +x_1(d.x2); }
if(graph_n_1 == "assets"){ return +x_1(d.x1); }
})
.attr("x2", function(d) {
if(graph_n_1 == "BPR"){ return +x_1(d.x3); }
if(graph_n_1 == "PR"){ return +x_1(d.x2); }
if(graph_n_1 == "assets"){ return +x_1(d.x1); }
})
.attr("y1", function(d) {
if(graph_n_1 == "BPR"){ return +y_1(d.y3)+4; }
if(graph_n_1 == "PR"){ return +y_1(d.y2)+4; }
if(graph_n_1 == "assets"){ return +y_1(d.y1)+4; }
})
.attr("y2", height_1)
.style("stroke", "#c45c28")
.transition().delay(500).duration(400).styleTween("opacity",
function() { return d3.interpolate(0, .5); })
svg_1.append("g")
.attr("class", "guide_1")
.data(dataC_1)
.append("line")
.attr("x1", function(d) {
if(graph_n_1 == "BPR"){ return +x_1(d.x3-5); }
if(graph_n_1 == "PR"){ return +x_1(d.x2-5); }
if(graph_n_1 == "assets"){ return +x_1(d.x1-5); }
})
.attr("x2", 0)
.attr("y1", function(d) {
if(graph_n_1 == "BPR"){ return +y_1(d.y3); }
if(graph_n_1 == "PR"){ return +y_1(d.y2); }
if(graph_n_1 == "assets"){ return +y_1(d.y1); }
})
.attr("y2", function(d) {
if(graph_n_1 == "BPR"){ return +y_1(d.y3); }
if(graph_n_1 == "PR"){ return +y_1(d.y2); }
if(graph_n_1 == "assets"){ return +y_1(d.y1); }
})
.style("stroke", "#c45c28")
.transition().delay(500).duration(400).styleTween("opacity",
function() { return d3.interpolate(0, .5); });
t1_1.selectAll(".circles_1").attr({
cx: function(d) {
if(graph_n_1 == "BPR"){ return +x_1(d.x3); }
if(graph_n_1 == "PR"){ return +x_1(d.x2); }
if(graph_n_1 == "assets"){ return +x_1(d.x1); }
},
cy: function(d) {
if(graph_n_1 == "BPR"){ return +y_1(d.y3); }
if(graph_n_1 == "PR"){ return +y_1(d.y2); }
if(graph_n_1 == "assets"){ return +y_1(d.y1); }
},
r: 4,
id: function(d) { return d.company; }
})
}
当我在第二个grap ** h中添加相同名称的相同功能时,选择框的更改会忽略first graph
并仅更改**第二个图
好吧,这是因为函数具有相同的名称,我更改了函数名称,然后只选择了相同的选择框,但结果与之前的尝试相同。
然后我添加了第二个选择框并尝试使用jQuery更改第一个选择框来控制第二个选择框。在选择第一个时,值在第二个上更改,但第二个图表保持不变。
很明显,在插入值时没有变化事件。
所以目前我不在乎。我需要改变什么才能通过一个选择框来控制两个图形?
您可以查看我的情况并按上面的链接进行修改:http://jsfiddle.net/g3MHp/
欢迎任何帮助或建议。
答案 0 :(得分:2)
您需要从选择框中调用的单个change
函数,该函数会更改两个图形。也就是说,从change_1
和change_2
获取代码并将其放入一个函数中。