Canvas grid to render large set of tabular data. Uses virtualization similar to react-window
- Supports virtualization - Only visible cells are rendered
- Supports scrolling using native scrollbars
- Supports both Fixed and Variable sized grids
- Highly customizable using react-konva
yarn add react-konva-grid
OR
npm install react-konva-grid
import { Grid } from 'react-konva-grid'
import { Group, Text, Rect } from 'react-konva'
const App = () => {
const Cell = ({ rowIndex, columnIndex, x, y, width, height}) => {
return (
<Group>
<Rect
x={x}
y={y}
height={height}
width={width}
fill="white"
stroke="grey"
/>
<Text
x={x}
y={y}
height={height}
width={width}
text={text}
verticalAlign="middle"
align="center"
/>
</Group>
)
}
return (
<Grid
rowCount={100}
columnCount={100}
width={800}
height={800}
rowHeight={(rowIndex) => 20}
columnWidth={(columnIndex) => 100}
>
{Cell}
</Grid>
)
}
Feel free to fork and submit pull requests
git clone https://github.com/rmdort/konva-grid.git
cd konva-grid
yarn
// Run storybook
yarn storybook