d3: 力導向圖既可以放縮也可以拖拽

<template>
    <div class="force" ref="force"></div>
</template>

<script>
    let svg = null;
    let force = null;
    let links = null;
    let nodes = null;
    let texts = null;
    let linePath = d3.svg.line();
    export default {
        name: "force",
        data() {
            return {
                nodesData: [],
                linksData: []
            }
        },
        mounted() {
            this.$nextTick(() => {
                this.renderForce();
            })
        },
        computed: {
            width() {
                return this.$refs.force.getBoundingClientRect().width;
            },
            height() {
                return this.$refs.force.getBoundingClientRect().height;
            }
        },
        methods: {
            renderForce() {
                this.initSvg();
                this.links();
                this.nodes();
                this.texts();
                this.initForce();
                force.start();
                this.refreshForce();
            },
            /**
             * 初始化svg
             */
            initSvg() {
                // 創(chuàng)建svg
                svg = d3.select('.force')
                    .append('svg')
                    .attr('width', this.width)
                    .attr('height', this.height)
                    // 在svg上添加放縮行為
                    .call(d3.behavior.zoom()
                        .on('zoom', this.zoomed)) // 監(jiān)聽放縮中
                    .append('g')
                    .attr('id', 'forceWrapper');
            },
            /**
             * 初始化力導向圖
             */
            initForce() {
                force = d3.layout.force()
                    .nodes(this.nodesData) // 設定或獲取力導向圖的節(jié)點數(shù)組
                    .links(this.linksData) // 設置或獲取力導向如布局的連線數(shù)組
                    .size([this.width, this.height]) // 設定或獲取力導向圖的作用范圍
                    .linkDistance(200) // 設置連線的距離
                    .charge(-400)// 設置節(jié)點的電荷數(shù)
                    .on('tick', this.tick); // 動畫的計算進入下一步
            },
            /**
             * 監(jiān)聽放縮中
             */
            zoomed() {
                /*================>>>>>>>>>>>>>>>>>>> 重 點 <<<<<<<<<<<<<<<<<<<<<<=================*/
                // 監(jiān)聽svg的放縮呢诬,該改變id為forceWrapper的
                d3.select('#forceWrapper')
                    .attr('transform', `
                    translate(${d3.event.translate}) scale(${d3.event.scale})
                    `)
            },
            /**
             *
             */
            tick() {
                // 設置node丈莺、link text節(jié)點關于位置的屬性
                nodes.attr('cx', function (d) {
                    return d.x;
                }).attr('cy', function (d) {
                    return d.y;
                });
                texts
                    .attr('dx', function (d) {
                        return d.x;
                    })
                    .attr('dy', function (d) {
                        return d.y + 35;
                    })
                    .text(d => {
                        return d.name;
                    });
                links.attr('d', function (d) {
                    let lines = [];
                    // 這是使用了線段生成器鹿驼,生成path的路徑
                    lines.push([d.source.x, d.source.y], [d.target.x, d.target.y]);
                    return linePath(lines);
                })
            },
            /**
             * 創(chuàng)建link
             */
            links() {
                // 切記這里要svg.selectAll('.link') 否則會將path元素創(chuàng)建到body底下 而非svg內(nèi)
                links = svg.selectAll('.link')
                    .append('path')
                    .attr('class', 'link')
            },
            /**
             * 創(chuàng)建node節(jié)點
             */
            nodes() {
                nodes = svg.selectAll('.circle')
                    .append('circle')
                    .attr('class', 'circle')
            },
            /**
             * 創(chuàng)建text
             */
            texts() {
                texts = svg.selectAll('.text')
                    .append('text')
                    .attr('class', 'text')
            },
            /**
             * 刷新頁面數(shù)據(jù)
             */
            refreshForce() {
                let newNodeData = [{name: "桂林"}, {name: "廣州"},
                    {name: "廈門"}, {name: "杭州"},
                    {name: "上海"}, {name: "青島"},
                    {name: "天津"}];
                let newlinksData = [{source: 0, target: 1}, {source: 0, target: 2},
                    {source: 0, target: 3}, {source: 1, target: 4},
                    {source: 1, target: 5}, {source: 1, target: 6}];
                // 添加或者修改node數(shù)據(jù)或者link數(shù)據(jù)具滴,一定要在原有數(shù)組內(nèi)添加或者刪除,不能 this.nodesData = newNodeData這樣反镇,想要知道為什么請查看引用類型的特性(堆和棧)
                this.nodesData.push(...newNodeData);
                this.linksData.push(...newlinksData);

                // 重新將數(shù)據(jù)綁定到link和node上
                links = links.data(force.links());
                links.enter()
                    .append('path')
                    .attr('class', 'link')
                    .attr('stroke-dasharray', '5 5')
                    .attr("stroke", '#ccc')
                    .attr('stroke-width', '3px');
                links.append('animate')
                    .attr('attributeName', 'stroke-dashoffset')
                    .attr('from', '0')
                    .attr('to', '-100')
                    .attr('begin', '0s')
                    .attr('dur', '3s')
                    .attr('repeatCount', 'indefinite');
                links.exit().remove();


                nodes = nodes.data(force.nodes());
                // 數(shù)據(jù)沒有對應的node添加circle node
                nodes.enter()
                    .append('circle')
                    .attr('class', 'circle')
                    .attr('r', 20)
                    .attr('fill', '#293152')
                    .style('cursor', 'pointer')
                    .call(force.drag()
                        .on('dragstart', function () {
                            /*=============重點========*/
                            // 切記 在force拖拽開始時組織默認時間
                            d3.event.sourceEvent.stopPropagation()
                        }));
                // 將多余的node節(jié)點刪除
                nodes.exit().remove();


                texts = texts.data(force.nodes());
                texts.enter()
                    .append('text')
                    .attr('class', 'mergeText')
                    .style('fill', '#000')
                    .style('font-size', 12)
                    .style('cursor', 'pointer')
                    .style('font-weight', 'lighter')
                    .style('text-anchor', 'middle')
                    .call(force.drag);
                texts.exit().remove();
                force.start();
            }
        }
    }
</script>

<style scoped>

</style>

重點:

 .call(force.drag()
  .on('dragstart', function () {
     /*=============重點========*/
    // 切記 在force拖拽開始時組織默認時間
    d3.event.sourceEvent.stopPropagation()
}));
zoomed() {
                /* >>>>>>>>>>>>>>>>>>> 重 點 <<<<<<<<<<<<<<<<<<<<<< */
                // 監(jiān)聽svg的放縮奋蔚,該改變id為forceWrapper的
                d3.select('#forceWrapper')
                    .attr('transform', `
                    translate(${d3.event.translate}) scale(${d3.event.scale})
                    `)
            }
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市联贩,隨后出現(xiàn)的幾起案子漫仆,更是在濱河造成了極大的恐慌,老刑警劉巖泪幌,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件盲厌,死亡現(xiàn)場離奇詭異,居然都是意外死亡祸泪,警方通過查閱死者的電腦和手機吗浩,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來没隘,“玉大人拓萌,你說我怎么就攤上這事∩裕” “怎么了微王?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長品嚣。 經(jīng)常有香客問我炕倘,道長,這世上最難降的妖魔是什么翰撑? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任罩旋,我火速辦了婚禮,結(jié)果婚禮上眶诈,老公的妹妹穿的比我還像新娘涨醋。我一直安慰自己,他們只是感情好逝撬,可當我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布浴骂。 她就那樣靜靜地躺著,像睡著了一般宪潮。 火紅的嫁衣襯著肌膚如雪溯警。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天狡相,我揣著相機與錄音梯轻,去河邊找鬼。 笑死尽棕,一個胖子當著我的面吹牛喳挑,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼伊诵,長吁一口氣:“原來是場噩夢啊……” “哼单绑!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起日戈,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤询张,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后浙炼,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體份氧,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年弯屈,在試婚紗的時候發(fā)現(xiàn)自己被綠了蜗帜。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡资厉,死狀恐怖厅缺,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情宴偿,我是刑警寧澤湘捎,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站窄刘,受9級特大地震影響窥妇,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜娩践,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一活翩、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧翻伺,春花似錦材泄、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至未妹,卻和暖如春簿废,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背络它。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留歪赢,地道東北人化戳。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親点楼。 傳聞我的和親對象是個殘疾皇子扫尖,可洞房花燭夜當晚...
    茶點故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內(nèi)容

  • 不知道大家會不會跟我一樣遇到這樣的問題,在之前做的力導向圖的基礎上加上縮放功能的時候掠廓,拖動節(jié)點時整體會平移不再是之...
    黃清淮閱讀 10,280評論 1 3
  • D3 是目前最流行的數(shù)據(jù)可視化庫换怖,WebGL 是目前 Web 端最快的繪制技術(shù)。由于性能問題的局限蟀瞧,將兩者結(jié)合的嘗...
    GeekPlux閱讀 3,347評論 3 10
  • 日本《鉆石》周刊6月8日刊登了日本早稻田大學商務金融研究中心顧問野口悠紀雄的一篇文章悦污,題為《日本半導體產(chǎn)業(yè)衰退的根...
    twintwin閱讀 529評論 0 0
  • 轉(zhuǎn)瞬即逝的夏 昨日立秋铸屉,未曾感到一絲入秋的涼意,城里的車水馬龍人潮涌動早已把自然本身發(fā)出的靈性淹沒了切端,人來人往...
    賈若荻閱讀 306評論 3 3
  • 我們的理財小習慣養(yǎng)成計劃接近尾聲彻坛,這里我們想幫助大家培養(yǎng)關心與錢相關的事,讓大家技能享受生活踏枣,又能腳踏實地地過日子...
    luoluo小嘻嘻閱讀 157評論 0 0