@bryntum/schedulerpro-react-thin
v7.2.2
Published
React wrappers for Bryntum Scheduler Pro JavaScript component
Readme
React wrapper for Bryntum Scheduler Pro Thin packages
This package contains a wrapper that encapsulates Bryntum Scheduler Pro and turns it into a React component, exposing configuration options, properties, features, and events.
Thin Package: This is a thin wrapper package designed for applications that use multiple Bryntum products. Thin packages exclude bundled dependencies to avoid duplication. For details, see React Multiple Products.
Version Requirement
- React:
18or higher - TypeScript:
4.2or higher - Vite
5or higher
Package Contents
| Path | Description |
|--------|------------------------------------------------|
| lib/ | React wrapper components (BryntumSchedulerPro etc.) |
| src/ | Original source files |
Installation
React Wrapper
npm install @bryntum/schedulerpro-react-thin@latestComponent Package (Required)
npm install @bryntum/schedulerpro-thin@latestTry Bryntum Online Demos
Quick Start
Replace your App.tsx with the following:
import React, { FunctionComponent, useRef } from 'react';
import { BryntumSchedulerPro } from '@bryntum/schedulerpro-react';
import { schedulerproProps } from './schedulerProConfig';
import './App.scss';
const App: FunctionComponent = () => {
const schedulerpro = useRef<BryntumSchedulerPro>(null);
return (
<BryntumSchedulerPro
ref = {schedulerpro}
{...schedulerproProps}
/>
);
};
export default App;Create a SchedulerProConfig.ts file in the src/ directory with the following content:
import { BryntumSchedulerProProps } from '@bryntum/schedulerpro-react';
export const schedulerproProps: BryntumSchedulerProProps = {
startDate : new Date(2026, 0, 1),
endDate : new Date(2026, 1, 10),
rowHeight : 60,
barMargin : 15,
eventStyle : 'colored',
viewPreset : 'hourAndDay',
columns : [
{ type : 'resourceInfo', width : 150 }
],
project : {
autoLoad : true,
transport : {
load : {
url : 'data.json'
}
}
}
};
Create a public/data/data.json file for example data and add the following JSON data to it:
{
"success": true,
"resources": {
"rows": [
{ "id": 1, "name": "Dan Stevenson" },
{ "id": 2, "name": "Talisha Babin" },
{ "id": 3, "name": "Michael Chen" },
{ "id": 4, "name": "Sophia Rodriguez" },
{ "id": 5, "name": "Arjun Mehta" }
]
},
"events": {
"rows": [
{ "id": 1, "startDate": "2026-01-01", "duration": 3, "durationUnit": "d", "name": "Project Kickoff" },
{ "id": 2, "startDate": "2026-01-04", "duration": 4, "durationUnit": "d", "name": "Requirement Gathering" },
{ "id": 3, "startDate": "2026-01-08", "duration": 5, "durationUnit": "d", "name": "UI/UX Design" },
{ "id": 4, "startDate": "2026-01-13", "duration": 7, "durationUnit": "d", "name": "Backend Development" },
{ "id": 5, "startDate": "2026-01-20", "duration": 6, "durationUnit": "d", "name": "Frontend Development" },
{ "id": 6, "startDate": "2026-01-26", "duration": 4, "durationUnit": "d", "name": "API Integration" },
{ "id": 7, "startDate": "2026-01-30", "duration": 3, "durationUnit": "d", "name": "Testing & QA" },
{ "id": 8, "startDate": "2026-02-02", "duration": 2, "durationUnit": "d", "name": "Client Review" },
{ "id": 9, "startDate": "2026-02-04", "duration": 3, "durationUnit": "d", "name": "Bug Fixing" },
{ "id": 10, "startDate": "2026-02-07", "duration": 2, "durationUnit": "d", "name": "Final Deployment" }
]
},
"assignments": {
"rows": [
{ "event": 1, "resource": 1 },
{ "event": 2, "resource": 2 },
{ "event": 3, "resource": 3 },
{ "event": 4, "resource": 4 },
{ "event": 5, "resource": 5 },
{ "event": 6, "resource": 3 },
{ "event": 7, "resource": 2 },
{ "event": 8, "resource": 1 },
{ "event": 9, "resource": 4 },
{ "event": 10, "resource": 5 }
]
},
"dependencies": {
"rows": [
{ "fromEvent": 1, "toEvent": 2 },
{ "fromEvent": 2, "toEvent": 3 },
{ "fromEvent": 3, "toEvent": 4 },
{ "fromEvent": 4, "toEvent": 5 },
{ "fromEvent": 5, "toEvent": 6 },
{ "fromEvent": 6, "toEvent": 7 },
{ "fromEvent": 7, "toEvent": 8 },
{ "fromEvent": 8, "toEvent": 9 },
{ "fromEvent": 9, "toEvent": 10 }
]
}
}This is the data the Bryntum SchedulerPro will use.
Project Structure
Product Dependencies
API packages:
{
"dependencies": {
"@bryntum/core-thin": "7.2.2",
"@bryntum/engine-thin": "7.2.2",
"@bryntum/grid-thin": "7.2.2",
"@bryntum/scheduler-thin": "7.2.2",
"@bryntum/schedulerpro-thin": "7.2.2"
}
}Framework wrapper packages:
{
"dependencies": {
"@bryntum/core-react-thin": "7.2.2",
"@bryntum/schedulerpro-react-thin": "7.2.2"
}
}Product Configuration
import { BryntumSchedulerProProps } from '@bryntum/schedulerpro-react-thin';
const schedulerProProps : BryntumSchedulerProProps = {
// Scheduler Pro configuration
};Product Styling
SCSS/CSS:
/* FontAwesome is used for icons */
@import '@bryntum/core-thin/fontawesome/css/fontawesome.css';
@import "@bryntum/core-thin/fontawesome/css/solid.css";
/* Structural CSS */
@import '@bryntum/core-thin/core.css';
@import '@bryntum/grid-thin/grid.css';
@import '@bryntum/scheduler-thin/scheduler.css';
@import '@bryntum/schedulerpro-thin/schedulerpro.css';
/* Theme */
@import '@bryntum/core-thin/svalbard-light.css';Product Localization
import '@bryntum/schedulerpro-thin/lib/localization/De.js'Integration Guide
For details on installing and using this package, see the React Integration Guide.
Wrappers
React wrappers encapsulate Bryntum components as native React components, exposing all configuration options, properties, features, and events through React-familiar patterns like props and callbacks.
Visit Wrappers documentation for the complete list of available wrapper components.
Features
Features are optional modules that extend Bryntum Scheduler Pro functionality. Each feature is suffixed with Feature and
can be enabled and configured through standard React props.
Visit Features documentation for the complete list of available features and their configuration options.
Explore All Bryntum Products
- Bryntum Grid - High-performance data grid
- Bryntum Scheduler - Resource scheduling component
- Bryntum Scheduler Pro - Advanced scheduling with dependencies
- Bryntum Gantt - Project planning and management
- Bryntum Calendar - Full-featured calendar component
- Bryntum TaskBoard - Kanban-style task management
Explore our comprehensive collection of demos:
| Product | JavaScript | React | Vue | Angular | |-------------------|:------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------:|:----------------------------------------------------------------------:|:------------------------------------------------------------------------------:| | Grid | Grid JavaScript demos | Grid React demos | Grid Vue demos | Grid Angular demos | | Scheduler | Scheduler JavaScript demos | Scheduler React demos | Scheduler Vue demos | Scheduler Angular demos | | Scheduler Pro | Scheduler Pro JavaScript demos | Scheduler Pro React demos | Scheduler Pro Vue demos | Scheduler Pro Angular demos | | Gantt | Gantt JavaScript demos | Gantt React demos | Gantt Vue demos | Gantt Angular demos | | Calendar | Calendar JavaScript demos | Calendar React demos | Calendar Vue demos | Calendar Angular demos | | TaskBoard | TaskBoard JavaScript demos | TaskBoard React demos | TaskBoard Vue demos | TaskBoard Angular demos |
Online references
License and copyright
This wrapper depends on Bryntum Scheduler Pro, which is commercial software and requires a paid license. Please visit the Bryntum Scheduler Pro End User License for the full text of the license.
Copyright © 2009-2026, Bryntum All rights reserved.
