3D Rendering
Powered by Babylon.js for high-performance 3D graph visualization with WebGL and WebGPU support.
Build interactive graph visualizations with a powerful Web Component library built on Lit and Babylon.js
Install via npm:
npm install @graphty/graphty-elementCreate your first graph:
<script type="module">
import '@graphty/graphty-element';
</script>
<graphty-element
node-data='[{"id": "a"}, {"id": "b"}, {"id": "c"}]'
edge-data='[{"source": "a", "target": "b"}, {"source": "b", "target": "c"}]'>
</graphty-element>See it in action: Basic Graph