GithubHelp home page GithubHelp logo

Comments (12)

cpettitt avatar cpettitt commented on June 10, 2024

Currently dagre-d3 doesn't have any special mechanism for describing a graph's style. This is something I definitely want to add, but haven't had time to think through in great depth. For the moment you can do this:

    g.addNode("review", { label: "Review", style: "fill: red" });

    var renderer = new dagreD3.Renderer();
    var oldDrawNode = renderer.drawNode();
    renderer.drawNode(function(graph, u, svg) {
      oldDrawNode(graph, u, svg);
      svg.select("rect").attr("style", function(u) { return g.node(u).style; });
    });
    renderer.run(g, d3.select("svg g"));

from dagre-d3.

cjsoftuk avatar cjsoftuk commented on June 10, 2024

@cpettitt - I too would welcome this feature, and am struggling to make the example code you gave work. The error I get is "Object # has no method 'drawNode'". I'll have an experiment and see if I can make this work.

from dagre-d3.

cpettitt avatar cpettitt commented on June 10, 2024

The API changed slightly in dagre-d3. This should work:

    g.addNode("review", { label: "Review", style: "fill: red" });

    var renderer = new dagreD3.Renderer();
    var oldDrawNodes = renderer.drawNodes();
    renderer.drawNodes(function(graph, svg) {
      var svgNodes = oldDrawNodes(graph, svg);
      svgNodes.select("rect").attr("style", function(u) { return g.node(u).style; });
      return svgNodes;
    });
    renderer.run(g, d3.select("svg g"));

from dagre-d3.

cjsoftuk avatar cjsoftuk commented on June 10, 2024

Thanks Chris,

I just about figured that out ~2-3 hours ago (and then got lost in a lot
of other Javascript I'm writing!).

I have to say that being able to do that is actually quite elegant - and
my personal opinion is that if people want to do fancy things with their
dagre-d3 graphs, they should implement it in a similar way to your example.

Regards,

Chris

On 11/01/14 16:28, Chris Pettitt wrote:

The API changed slightly in dagre-d3. This should work:

| g.addNode("review", { label: "Review", style: "fill: red" });

 var renderer = new dagreD3.Renderer();
 var oldDrawNodes = renderer.drawNodes();
 renderer.drawNodes(function(graph, svg) {
   var svgNodes = oldDrawNodes(graph, svg);
   svgNodes.select("rect").attr("style", function(u) { return g.node(u).style; });
 });
 renderer.run(g, d3.select("svg g"));

|
|


Reply to this email directly or view it on GitHub
#13 (comment).

from dagre-d3.

evangoer avatar evangoer commented on June 10, 2024

Thank you for the code example Chris! FWIW, it would be very nice if dagre-d3 had some sugar for adding styles or classes to nodes & edges (i.e., if adding a 'class' or 'style' property to the config object "just worked").

from dagre-d3.

jbaber avatar jbaber commented on June 10, 2024

Is there a similar readable trick for styling different edges differently? My actual use case is a family tree with mother and father relations colored differently.

from dagre-d3.

cpettitt avatar cpettitt commented on June 10, 2024

As of v0.2.7 you can apply styles to nodes, node labels, edges paths, and edges. Documentation yet to be completed, but you can take a look at the interactive-demo to get a sense for how it works.

from dagre-d3.

jbaber avatar jbaber commented on June 10, 2024

Thank you!

from dagre-d3.

steren avatar steren commented on June 10, 2024

I would also like to ability to add a class, to style using CSS. It doesn't seem to be supported, is it?

from dagre-d3.

 avatar commented on June 10, 2024

+1, it would be interesting to override the style by using a class like g.addNode(null, {class: "ClassA". useDef: "def-N2"});

@steren a workaround...

            var oldDrawNodes = renderer.drawNodes();

            renderer.drawNodes(function(graph, svg) {

                var svgNodes = oldDrawNodes(graph, svg);

                svgNodes.select("rect").attr("class", "classA classB");

                return svgNodes;
            });

from dagre-d3.

cpettitt avatar cpettitt commented on June 10, 2024

I could take this as a pull request, but I don't have cycles to add it myself right now. It shouldn't be a lot of work to add.

from dagre-d3.

SmruthiBhat avatar SmruthiBhat commented on June 10, 2024

can a node created using addNode function be made collapsible?

Thanks.

from dagre-d3.

Related Issues (20)

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.