0
我在D3.js工作,並試圖瞭解nested selections和general update pattern。D3.js:嵌套選擇?
我的數據是這樣的:
var data1 = [
{ 'name': 'LHR', 'position': 1, 'flights': [1,10,12,14,3] },
{ 'name': 'LAX', 'position': 2, 'flights': [3,6,12,6,3] },
{ 'name': 'SFO', 'position': 3, 'flights': [2,8,17,18,5] }
];
渲染SVG是這樣的:
<g class="airport LAX">
<text class="LAX legend" x="250" y="40" dy=".2em">LAX</text>
<circle class="flight" cx="20" cy="16" r="3"></circle>
<circle class="flight" cx="40" cy="22" r="3"></circle>
<circle class="flight" cx="60" cy="34" r="3"></circle>
<circle class="flight" cx="80" cy="22" r="3"></circle>
<circle class="flight" cx="100" cy="16" r="3"></circle>
</g>
而且我想正在添加,更新和刪除文本和圓形元素的平滑過渡 - 從圖表頂部出現的新元素,更新的元素平滑移動,刪除掉圖表底部的元素。
這是到目前爲止我的代碼:http://jsfiddle.net/kqxhj/5/
我可以轉換新的和更新的元素。但我不能這樣做,因爲某些原因,就是讓exit
選擇這些元素很好地刪除它們。
我怎樣才能得到exit
選擇這些圓圈和文本元素,這樣我就可以平滑地過渡不送圖形的底部?
真棒,謝謝!之前沒有看到過像這樣的「延遲」。我注意到一個單獨的問題,即如果連續兩次單擊按鈕,轉換就會中斷。不過,我已經把它寫成了一個單獨的問題。 http://stackoverflow.com/questions/16335781/d3-js-stop-transitions-being-interrupted – Richard 2013-05-02 10:31:27