Infinite Scalability
Handle millions of rows and thousands of columns with zero latency. Optimized memory management for big data.
High-performance, canvas-powered grid engine for massive scientific datasets and real-time visualization.
Experience the speed of SciGrid rendering 1,000,000 rows without breaking a sweat.
npm install @sci-grid/core
# or
pnpm add @sci-grid/coreimport { SciGridReact } from '@sci-grid/react';
const columns = [
{ key: 'id', title: 'ID', width: 80 },
{ key: 'name', title: 'Name', width: 200 },
{ key: 'value', title: 'Measurement', type: 'scientific' }
];
const data = [/* your massive dataset */];
function App() {
return <Grid columns={columns} data={data} height={600} />;
}| Feature | SciGrid | AG Grid | TanStack Table |
|---|---|---|---|
| Max Rows (Lag-free) | ∞ (Canvas) | ~100k (DOM) | ~10k (DOM) |
| Multi-Framework | ✅ Native | ✅ Wrapper | ✅ Headless |
| Scientific Units | ✅ Built-in | ❌ | ❌ |
| Drawing Mode | Canvas 2D | DOM / Canvas | DOM Only |
| Real-time Updates | ✅ Optimized | ⚠️ Heavy | ⚠️ Heavy |