“ d3.selectAll()。style()”不会将样式应用于所选元素,但是在此选择范围内,如果可行,请使用“ d3.select(this).style()”

时间:2019-09-19 18:14:06

标签: javascript d3.js

使用此CSS规则,我设法使svg中的元素不透明。

enter image description here

setTimeout(()=>{
  d3.selectAll("#graph4 > svg g.c3-chart-bar.c3-target.c3-target-data3").style("opaciy",0.3) //not works
},2000)

但在我的脚本中,此代码不透明度不适用。

setTimeout(()=>{
  d3.selectAll("#graph4 > svg g.c3-chart-bar.c3-target.c3-target-data3").style("opaciy",function(){
    d3.select(this).style("opacity",0.3); //it works
    return "";
  });
},2000)

但是,如果适用,我会这样做。为什么?

string connStr = "datasource=localhost;port=3306;username=root;password=abcdef;database=tennisapi;";

MySqlConnection conn= new MySqlConnection(connStr);

1 个答案:

答案 0 :(得分:0)

在几个地方(不透明),似乎不透明拼写错误。