0
有沒有一種辦法風格d3.js圖表軸與JS與此類似:D3軸
svg.append("text")
.attr("x",xPos)
.attr("y",yPos -3)
.attr("font-family", "sans-serif")
.attr("font-size", "10px")
.attr("font-weight", "bold")
.attr("fill", "black")
.attr("text-anchor", "middle")
.attr("id", "tooltip")
.attr("transform", "translate(" + width/2 + ")")
.text(d.name +": "+ d.value);
,而不是使用使用CSS的標準方法。下面是我想用JS
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.bar {
fill: steelblue;
}
.x.axis path {
display: none;
}