@react-sigma/core
v4.0.3
Published
React Sigma
Downloads
31,890
Readme
React Sigma - core module
A set of react components to display graphs with Sigma.js.
Visit our website for docs and examples : https://sim51.github.io/react-sigma/
Documentation
How to use it
- Install the library
npm install @react-sigma/core
Import the React Sigma style file in your application. Example :
import "@react-sigma/core/lib/react-sigma.min.css"
Create the following components into your app and check it displays correctly:
import Graph from "graphology";
import { SigmaContainer, useLoadGraph } from "@react-sigma/core";
import "@react-sigma/core/lib/react-sigma.min.css";
export const LoadGraph = () => {
const graph = new Graph();
graph.addNode("first", { size: 15, label: "My first node", color: "#FA4F40" });
useLoadGraph(graph);
};
export const DisplayGraph = () => {
return (
<SigmaContainer style={{ height: "500px", width: "500px" }}>
<LoadGraph />
</SigmaContainer>
);
};