rund3
p= パス
c= コード
s= スタイルシート
code=URL
suto3.github.com/ ← アクセスできない
でもいいのか。
code:d3.css
div.bar {
display: inline-block;
width: 40px;
height: 75px;
/* background-color: teal; */
background-color: blue;
}
code:d3.js
const dataset = 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1 code:d3.js
d3.select("body")
.selectAll("div")
.data(dataset)
.enter()
.append("div")
.attr("class", "bar")
.style("height", function(d) {
var barHeight = d * 10
return barHeight + "px"
})
code:d3g.js
d3.select("#graph").graphviz()
.fade(false)
.renderDot(
'digraph {\
a -> b -> c\
}'
)
[https://idy.herokuapp.com/rss/0/https://github.com/masui/rund3/releases.atom#.svg]
https://ricapitolare.vercel.app/svg?url=https://github.com/masui/rund3#.png https://github.com/masui/rund3