0
A
回答
1
看看你發佈的圖表,沒有直接的d3傳輸,以這種螺旋方式排列節點。但是,如果您知道需要放置節點的位置,則可以進行強制佈局。
是的,你有可用的節點拖動鏈接將得到相應的更新。附上小提琴,您可以即興創作並將圖像添加到節點。節點的數據應該是這樣的:
"nodes": [{
"x": 30,// as i said you need to provide the x coordinate where to put the node
"y": 30,
fixed: true,//so that the force layout don't move it
name: "Start", //text to be displayed
display: "none",// set this as none if you dont want the circle
tx: 5, //x placement of text on node
ty: -5 //y placement of text on node
}, {
"x": 200,
"y": 30,
fixed: true,
name: "A"
},
這是我的fiddle。
+0
謝謝@Cyril,:) – Arjun
相關問題
- 1. highcharts zoomable 6個月線圖
- 2. zoomable圖片 - android
- 3. Zoomable圖形
- 4. 分解折線圖中的折線圖
- 5. JqPlot酒吧和折線圖
- 6. Chart.js酒吧和折線圖
- 7. SSRS列和折線圖?
- 8. SSRS組合列和折線圖 - 線寬
- 9. SSRS折線圖
- 10. Visifire折線圖
- 11. Spotfire - 折線圖
- 12. PHP:折線圖
- 13. 折線圖android
- 14. 折線圖海圖
- 15. 如何使用Kendo-zoomable視圖和AngularJS
- 16. 小區條形圖和折線圖
- 17. 結合條形圖和折線圖
- 18. 堆積條形圖和折線圖
- 19. 輸入折線圖旁邊折線圖中的趨勢線
- 20. 折線圖的參考線
- 21. 更新折線圖
- 22. 谷歌折線圖
- 23. Laravel jQuery折線圖
- 24. dimple.js破折線圖
- 25. R 3D折線圖
- 26. 創建折線圖
- 27. chartjs折線圖Javascript
- 28. 折線圖問題
- 29. flotr2 - 在折線圖
- 30. jQuery Zoomable垂直條形圖
我不知道是誰降級這個問題, 如果你不知道答案不這樣做。 – Arjun
這是一個很好的問題,我不知道爲什麼它投下了票。 upvote + – Cyril
這個問題不包含代碼,它沒有顯示OP如何做他正在做的事情,也沒有顯示任何解決方案的嘗試。有很多問題可以證明d3中的縮放和拖拽。當OP進行調查時,他們無法使用該信息實施解決方案的問題是什麼。總之,你覺得**表示研究工作的問題是什麼? –