Graph Visualization With GraphQL & react-force-graph

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

Thanks a lot, I would appreciate more videos on graph visualization.

tobiasbuchmann
Автор

Extremely helpful man, thank you very much!

dglalperen
Автор

thanks for the video. do we have an example on how to render node's image by react-force-graph-3d?

parttimeman
Автор

Hello, thanks for the video, I have a question, what if Idon't use Next and I only use React for the project? Is there a way to override dynamic import and have it work in the browser?

barbaracaceres
Автор

I'm trying to import the ForceGraph2d directly from the library and its throw an error in the browser

import React from 'react';
import { ForceGraph2D } from 'react-force-graph-2d';
// import styles from

const myData = {
  nodes: [{ id: 'a' }, { id: 'b' }, { id: 'c' }],
  links: [
    { source: 'a', target: 'b' },
    { source: 'c', target: 'a' },
  ],
};

const NetworkForceGraph = () => {
  return <ForceGraph2D graphData={myData} />;
};

export default NetworkForceGraph;

barbaracaceres
welcome to shbcf.ru