Skip to content

Plug-and-play React components for generating graphs and networks

License

Notifications You must be signed in to change notification settings

ericeasthope/fancy-graph

Repository files navigation

tags
react d3 typescript graph component-based

fancy-graph

React.js, D3.js, and TypeScript all come together with some pretty obscure NPM packages, fancy 3D, and transition effects, to bring you yet another pluggable spec-based D3.js force-directed grapher.

How to use

See [pages/index.tsx] for an example.

tl;dr (I'm not sure if it actually works yet, though.)

import FancyGraph, { SVG, Graph, Link, Line, Node, Circle } from 'fancy-graph';

const MyComponent = () => {
  //  ...

  return (
    <FancyGraph>
      <SVG centerOrigin>
        <Graph>
          <Link>
            <Line
              // Set link line colour based on data join status
              stroke={{
                enterStroke: 'green',
                updateStroke: 'yellow',
                exitStroke: 'red',
              }}
            />
          </Link>
          <Node>
            <Circle
              // Set node circle hover tooltip based on ID
              title={(d) => d.id}
            />
          </Node>
        </Graph>
      </SVG>
    <FancyGraph>
  );

export default MyComponent;

Contributing

Please fork and send pull requests!


Inspired by:


Authored by Eric Easthope (@ericeasthope), MIT License

About

Plug-and-play React components for generating graphs and networks

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published