これはおそらく本当に簡単です。別のページへのリンクを追加しようとしています。私はd3を通してそれを追加しようとしています。JS に別の属性を追加する必要がありますか? Iv .attr("src", "newPage.html") と .attr("url", "newPage.html") を試しましたが、どちらも機能しません。
アドバイスをいただければ幸いです。ありがとう。
//JS
var newLink = d3.select(".chart")
.append("div")
.html("Trend Graph")
.attr("class", "populationTrend")
//CSS
.populationTrend{
font-weight:400;
margin-top:-15%;
cursor:pointer;
padding-left:70%;
background-color:#039;
}