使用此CSS规则,我设法使svg中的元素不透明。
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);
答案 0 :(得分:0)
在几个地方(不透明),似乎不透明拼写错误。