Coder Social home page Coder Social logo

d3fire's People

Contributors

leitzler avatar mattdodge avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

d3fire's Issues

Request for Example

Do you have any working examples of D3Fire that users can look at to better understand how to implement?

Can't figure how to use .data()

I'm trying to write a collaborative graph editor using D3Fire (a previous version was more or less working with a Django server) . My attempt is here : https://github.com/goulu/firegraph

My problem is I can't figure out how to retrieve the source+target data from the links. Currently I have:

function updateGraph() {

    var nodes = svg.selectAll(".node").data();
    var links = svg.selectAll(".link").data();

    packer
        .nodes(nodes)
        .links(links)
        .on("tick", function(d) {
            //...
                });
            packer.links().forEach(function(d) {
                d3.select(d)
                    .attr("d", path);
            });
        })
        .start();
}

but it crashes in start() because links contains undefined objects.

in your demo, how would you create the links list it it were stored in firebase ?

function layThemOut() {
                    var nodes = wordCloud.selectAll('g')[0], links = [];

BTW why do you use a [0] after selectAll for nodes instead of .data() ?

Thanks for any help, and thanks for your piece of code which will be extremely useful to me !

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.