1. ホーム
  2. javascript

[解決済み] D3でプロパティの値に基づいてオブジェクトをソートする

2022-03-11 09:25:54

質問

D3で使用するオブジェクトの配列を持っています。

var cities = [
  { city: "London", country: "United Kingdom", index: 280 },
  { city: "Geneva", country: "Switzerland", index: 259 },
  { city: "New York City", country: "United States", index: 237 },
  { city: "Singapore", country: "Singapore", index: 228 },
  { city: "Paris", country: "France", index: 219 },
  { city: "San Francisco", country: "United States", index: 218 },
  { city: "Copenhagen", country: "Denmark", index: 217 },
  { city: "Sydney", country: "Australia", index: 215 },
  { city: "Hong Kong", country: "Hong Kong", index: 214 },
  { city: "Brisbane", country: "Australia", index: 208 }
}

cities.indexプロパティに基づいてオブジェクトを昇順に並べたいと思います。そうすれば、次のように表示することができます。 D3.js . D3でこれを行う方法があると確信していますが、オブジェクトの配列を扱うときにそれを理解することはまだありません。

何かお手伝いできることはありますか?

解決方法は?

無名関数をJavascriptに渡すことができます。 Array.prototype.sort でソートします。 index . D3には、関数 d3.ascending (v 3.x) を使用すると、昇順にソートするのが簡単になります。

cities.sort(function(x, y){
   return d3.ascending(x.index, y.index);
})

そして、その出力がこちらです。

[
 {"city":"Brisbane","country":"Australia","index":208},
 {"city":"Hong Kong","country":"Hong Kong","index":214},
 {"city":"Sydney","country":"Australia","index":215},
 {"city":"Copenhagen","country":"Denmark","index":217},
 {"city":"San Francisco","country":"United States","index":218},
 {"city":"Paris","country":"France","index":219},
 {"city":"Singapore","country":"Singapore","index":228},
 {"city":"New York City","country":"United States","index":237},
 {"city":"Geneva","country":"Switzerland","index":259},
 {"city":"London","country":"United Kingdom","index":280}
]