する代わりに
d3.select("body").append("svg")
、ほとんどのd3.jsの例で行われているように、要素を作成したいのですが、すぐに本体などにアタッチしたくありません。
$('<div/>')
jQueryのようなものです。
これどうやってするの?
する代わりに
d3.select("body").append("svg")
、ほとんどのd3.jsの例で行われているように、要素を作成したいのですが、すぐに本体などにアタッチしたくありません。
$('<div/>')
jQueryのようなものです。
これどうやってするの?
document.createElement()を使用して要素を作成しd3
、通常どおりに渡します。
コンソールで:
> a = document.createElement("div")
<div></div>
> d3.select(a).append("svg")
[Array[1]]
> a
<div>
<svg></svg>
</div>
// create selection containing unattached div node
var sel = d3.create('svg');
そして、ノードだけが必要な場合...
// retrieve unattached node
var node = d3.create('svg').node();
「メモリ内」で svg 要素を作成するには、 を使用しますdocument.createElementNS
。
document.createElementNS の使用:
// Create the svg elem
var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
// Create a g elem
var g = document.createElementNS("http://www.w3.org/2000/svg", "g");
// Create a d3 Selection with the elem
var d3Svg = d3.select(svg);
var d3g = d3.select(g);
d3 選択を別の d3 選択に追加します。
d3Svg.append(function(){ return d3g.node(); });
カスタム SVG 要素でパーセンテージ幅をサポートするために、これを行う必要がありました。
var svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
svgDom.setAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns:xlink", "http://www.w3.org/1999/xlink");
svg = d3.select(svgDom)
.attr("class", "chart")
.attr("width", "100%")
.attr("height", "100%");