selection.raise()

selection.raise()

Re-inserts each selected element, in order, as the last child of its parent. Equivalent to:

selection.each(function() {
  this.parentNode.appendChild(this);
});
doc_D3_Js
2016-11-24 10:28:58
Comments
Leave a Comment

Please login to continue.