https://github.com/syncfusionexamples/react-grid-performance-sample
Sample
https://github.com/syncfusionexamples/react-grid-performance-sample
ej2 grid react syncfusion
Last synced: about 1 year ago
JSON representation
Sample
- Host: GitHub
- URL: https://github.com/syncfusionexamples/react-grid-performance-sample
- Owner: SyncfusionExamples
- Created: 2024-08-19T06:58:22.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-22T04:28:28.000Z (almost 2 years ago)
- Last Synced: 2025-02-08T20:47:55.929Z (over 1 year ago)
- Topics: ej2, grid, react, syncfusion
- Language: TypeScript
- Size: 352 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React-Grid-performance-sample
In this demo, the grid is configured to bind 100,000 records across 5 columns. This sample is designed to evaluate performance during the initial rendering of the grid and various data operations, including sorting, filtering, searching, grouping, and paging with different page sizes. You can assess performance by adjusting the page size via the pageSize value in the [pageSettings](https://ej2.syncfusion.com/react/documentation/api/grid/pageSettings/#pagesize) property at the sample level. Additionally, you have the option to enable virtual scrolling by setting [enableVirtualization](https://ej2.syncfusion.com/react/documentation/api/grid/#enablevirtualization), or you can choose to test with pagination by enabling the [allowPaging](https://ej2.syncfusion.com/react/documentation/api/grid/#allowpaging) feature. If you prefer to explore infinite scrolling, you can activate the [enableInfiniteScrolling](https://ej2.syncfusion.com/react/documentation/api/grid/#enableinfinitescrolling) feature at the sample level.
> Note: Paging, Virtual Scrolling, and Infinite Scrolling are unique features, meaning only one of these can be enabled at a time.
Refer to the following link for more information in the documentation.
[Paging](https://ej2.syncfusion.com/react/documentation/grid/paging)
[virtual scroll](https://ej2.syncfusion.com/react/documentation/grid/scrolling/virtual-scrolling)
[Infinite scroll](https://ej2.syncfusion.com/react/documentation/grid/scrolling/infinite-scrolling)

## Run
Use the following command to run the sample
``` bash
# install dependencies
npm install
# run the application
npm start
```