0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Tree図でnode.ancestors()を使い、祖先要素までのpathをハイライト

Last updated at Posted at 2016-07-12

version

d3.jsのversionは4.1.0です。

Code

今回使用した全コード

mouseイベントを追加

addHover() {
    this.element.on("mouseover", this.mouseovered(true))
    .on("mouseout", this.mouseovered(false));
}

mouse hoverさせてハイライトさせます。起点となる要素にmouseイベントを追加します。

該当コード

祖先要素をハイライト :sparkles:

Kobito.ilsqTi.png

Code

mouseovered(active) {

    return function(d) {

      var paths = d3.selectAll("path");

      if(active) {
        let ancestors = d.ancestors();
        
        //ハイライト
        paths.filter((d) => ancestors.includes(d))
        .style("stroke", "#f00");
        
      } else {
      	//ハイライトやめて、デフォルトの色に変更
        paths.style("stroke", "#555");
      }
    };
  }

node.ancestors()

祖先要素を配列で返します。

d3-hierarchy/README.md at master · d3/d3-hierarchy

includes

indexOfではなくて、ES6のincludesを使って配列の要素を検索します。filterを使って祖先要素に該当するものだけを選別します。

String.prototype.includes() - JavaScript | MDN

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?