Project Management Integrations for MUI Apps
Gantt charts, Kanban boards, scheduling, and resource management libraries
that compose with MUI's theme, layout, and component slots.
MUI X does not ship a native Gantt component (roadmap item, not yet available).
Use these libraries for the timeline and MUI for everything around it.
Gantt Chart Libraries
SVAR React Gantt — Best Free Option (MIT)
npm install wx-react-gantt
Free MIT core:
- Interactive drag-and-drop task editing on timeline
- Task dependencies (FS, SS, EE, SE)
- Hierarchical/summary tasks with collapsible groups
- Customizable task bars, tooltips, grid columns, time scale
- Multiple zoom levels, keyboard navigation, light/dark themes
- Full TypeScript, React 19 compatible, Vite/Next.js
- 10,000+ task performance
SVAR PRO (~$524/dev perpetual) adds:
- Working-day calendars per project/task/resource
- Baselines (original plan vs current)
- Auto-scheduling (tasks shift when dependencies change)
- Split tasks, undo/redo, rollups, slack visualization
- Export to PDF, PNG, Excel
- Import/export MS Project files
MUI integration:
import { Gantt } from 'wx-react-gantt';
import Paper from '@mui/material/Paper';
import Button from '@mui/material/Button';
import Dialog from '@mui/material/Dialog';
function ProjectGantt({ tasks, links }) {
const [editTask, setEditTask] = useState(null);
return (
<Paper sx={{ height: 600, overflow: 'hidden' }}>
{/* MUI toolbar above Gantt */}
<Box sx={{ display: 'flex', gap: 1, p: 1, borderBottom: 1, borderColor: 'divider' }}>
<Button size="small" In</Button>
<Button size="small" Out</Button>
<DateRangePicker slotProps={{ textField: { size: 'small' } }} />
</Box>
{/* Gantt handles timeline rendering */}
<Gantt
tasks={tasks}
links={links}
=> setEditTask(task)}
/>
{/* MUI Dialog for task editing */}
<Dialog open={!!editTask} => setEditTask(null)} maxWidth="sm" fullWidth>
<TaskEditForm task={editTask} />
</Dialog>
</Paper>
);
}
DHTMLX React Gantt — Enterprise (Paid)
npm install @dhx/react-gantt
- Renders 30,000+ tasks smoothly
- Auto-scheduling, critical path calculation
- Resource management with histogram (PRO)
- Working time calendars at project/task/resource levels
- Undo/redo with Valtio or Redux
- Official MUI examples in docs using MUI Button, Divider, ButtonGroup, icons
- Standard: free (limited); PRO: ~$699/dev; Team: ~$1,299
Bryntum Gantt — MS Project Feature Parity (Paid)
- MS Project-equivalent scheduling engine (ChronoGraph)
- Critical path with early/late dates, free slack, total slack
- Baselines: any number of snapshots
- Progress line visualization
- Resource assignment column with multi-select picker
- CSS variables align to MUI theme tokens
- ~$680-940/dev perpetual
- SaaS/OEM requires separate license — contact before committing
Syncfusion React Gantt — Free for Small Teams
- Free Community License for <$1M revenue, ≤5 devs, ≤10 employees
- Critical path with
enableCriticalPath prop
- Resource view, filtering, split tasks, undo/redo
- Part of 1,900+ component suite
- Export PDF/CSV/Excel
FullCalendar Premium — Resource Scheduling ($480/dev/yr)
- Free MIT: day/week/month calendar, drag-and-drop
- Premium: Resource Timeline (horizontal, Gantt-like), Vertical Resource view
- Best for contractor availability/booking views, not dependency Gantt
Feature Comparison Matrix
| Feature |
SVAR Free |
SVAR PRO |
DHTMLX PRO |
Bryntum |
Syncfusion Community |
| Cost |
Free MIT |
~$524/dev |
~$699/dev |
~$680/dev |
Free (<$1M) |
| React native |
✓ |
✓ |
✓ |
Wrapper |
Wrapper |
| Drag/drop |
✓ |
✓ |
✓ |
✓ |
✓ |
| Dependencies |
✓ |
✓ |
✓ |
✓ |
✓ |
| Critical path |
— |
— |
✓ |
✓ |
✓ |
| Baselines |
— |
✓ |
✓ |
✓ |
✓ |
| Auto-scheduling |
— |
✓ |
✓ |
✓ |
✓ |
| Resource mgmt |
— |
— |
✓ |
✓ |
✓ |
| Working calendars |
— |
✓ |
✓ |
✓ |
✓ |
| MS Project import |
— |
✓ |
— |
— |
— |
| Export PDF/Excel |
— |
✓ |
✓ |
✓ |
✓ |
| Undo/redo |
— |
✓ |
✓ |
✓ |
✓ |
| MUI theming |
✓ |
✓ |
✓ documented |
✓ |
CSS vars |
| SaaS/OEM allowed |
✓ MIT |
✓ |
✓ |
Need OEM |
Needs paid |
| Max tasks |
10K+ |
10K+ |
30K+ |
30K+ |
Large |
Kanban Board Libraries
dnd-kit — Modern Standard (MIT Free)
npm install @dnd-kit/core @dnd-kit/sortable @dnd-kit/utilities
The successor to react-beautiful-dnd. Community standard for React DnD.
import {
DndContext,
DragOverlay,
closestCorners,
PointerSensor,
KeyboardSensor,
useSensor,
useSensors,
} from '@dnd-kit/core';
import { SortableContext, verticalListSortingStrategy } from '@dnd-kit/sortable';
import { useSortable } from '@dnd-kit/sortable';
import { CSS } from '@dnd-kit/utilities';
import Paper from '@mui/material/Paper';
import Card from '@mui/material/Card';
import Typography from '@mui/material/Typography';
import Avatar from '@mui/material/Avatar';
import Chip from '@mui/material/Chip';
import Stack from '@mui/material/Stack';
// Sortable card using MUI Card
function KanbanCard({ task }: { task: Task }) {
const { attributes, listeners, setNodeRef, transform, transition, isDragging } = useSortable({
id: task.id,
});
const style = {
transform: CSS.Transform.toString(transform),
transition,
opacity: isDragging ? 0.5 : 1,
};
return (
<Card
ref={setNodeRef}
style={style}
{...attributes}
{...listeners}
sx={{
p: 1.5, mb: 1, cursor: 'grab',
'&:hover': { borderColor: 'primary.main', boxShadow: 2 },
border: '1px solid', borderColor: 'divider', borderRadius: 2,
}}
>
<Typography variant="body2" fontWeight={600}>{task.title}</Typography>
<Stack direction="row" spacing={1} sx={{ mt: 1 }} alignItems="center">
<Chip label={task.priority} size="small" color={priorityColor(task.priority)} />
<Avatar src={task.assignee.avatar} sx={{ width: 24, height: 24 }} />
</Stack>
</Card>
);
}
// Kanban column
function KanbanColumn({ column, tasks }: { column: Column; tasks: Task[] }) {
return (
<Paper
sx={{
width: 280, minHeight: 400, p: 1, borderRadius: 2,
bgcolor: 'action.hover',
}}
>
<Stack direction="row" justifyContent="space-between" alignItems="center" sx={{ mb: 1, px: 1 }}>
<Typography variant="subtitle2">{column.title}</Typography>
<Chip label={tasks.length} size="small" />
</Stack>
<SortableContext items={tasks.map((t) => t.id)} strategy={verticalListSortingStrategy}>
{tasks.map((task) => (
<KanbanCard key={task.id} task={task} />
))}
</SortableContext>
</Paper>
);
}
// Board with drag between columns
function KanbanBoard({ columns, tasks }: KanbanBoardProps) {
const sensors = useSensors(
useSensor(PointerSensor, { activationConstraint: { distance: 8 } }),
useSensor(KeyboardSensor),
);
const [activeId, setActiveId] = useState<string | null>(null);
return (
<DndContext
sensors={sensors}
collisionDetection={closestCorners}
active }) => setActiveId(active.id as string)}
>
<Stack direction="row" spacing={2} sx={{ overflowX: 'auto', p: 2 }}>
{columns.map((col) => (
<KanbanColumn
key={col.id}
column={col}
tasks={tasks.filter((t) => t.columnId === col.id)}
/>
))}
</Stack>
{/* Ghost clone while dragging */}
<DragOverlay>
{activeId && (
<Card sx={{ p: 1.5, boxShadow: 8, borderRadius: 2, opacity: 0.9 }}>
<Typography variant="body2">{findTask(activeId)?.title}</Typography>
</Card>
)}
</DragOverlay>
</DndContext>
);
}
Pattern: Intercept onDragEnd to call ASP.NET Core PATCH endpoint for column/order change. Use DragOverlay with MUI elevation for smooth animated ghost.
react-mui-scheduler — MUI-Native Calendar (MIT Free)
npm install react-mui-scheduler
- Month/week/day/timeline views built on
@mui/material
- Event grouping by resource
- Search bar, date picker, view switcher in toolbar
- Localization: 8 languages
- Best for appointment/availability calendars (contractor scheduling, event booking)
Pragmatic Drag and Drop (Atlassian) — MIT Free
npm install @atlaskit/pragmatic-drag-and-drop
- Powers Jira and Trello's drag-and-drop
- Lower-level API than dnd-kit, purpose-built for production kanban at scale
- MIT open-source since 2024
Recommended Stack by Use Case
| Use Case |
Library |
License |
| Contractor project timeline (internal) |
SVAR Gantt Free |
MIT |
| Full MS Project-equivalent Gantt in SaaS |
Bryntum OEM or DHTMLX PRO |
Paid |
| Free Gantt for early SaaS <$1M revenue |
Syncfusion Community |
Free |
| Resource booking / availability calendar |
FullCalendar Premium + MUI |
$480/yr |
| Kanban task board (Jira-style) |
dnd-kit + MUI Cards |
MIT |
| Contractor appointment scheduler |
react-mui-scheduler |
MIT |
| Flexible timeline (bookings, media) |
gantt-schedule-timeline-calendar |
Freemium |
Architecture: Gantt + MUI DataGrid Sidebar
The most powerful project management UI combines a Gantt timeline with a companion DataGrid.
┌─────────────────────────────────────────────────────────┐
│ MUI AppBar Toolbar │
│ [Zoom In] [Zoom Out] [View: Gantt|Kanban|Calendar] │
│ [DateRangePicker] [Export] │
├───────────────────────┬─────────────────────────────────┤
│ MUI X DataGrid │ Gantt Timeline (SVAR/DHTMLX) │
│ ┌─────────────────┐ │ ┌─────────────────────────────┐│
│ │ Task | Status │ │ │ ▓▓▓▓▓▓░░░ Project Alpha ││
│ │ Alpha| ● Active │◄─┼──│ ▓▓▓▓░░░░░ Task 1 ││
│ │ Beta | ○ Draft │ │ │ ▓▓▓▓▓░░ Task 2 ──────►││
│ │ Gamma| ● Active │ │ │ ▓▓▓ Task 3 ││
│ └─────────────────┘ │ └─────────────────────────────┘│
├───────────────────────┴─────────────────────────────────┤
│ MUI Drawer (right) — Task Detail Form │
│ [RHF Form] [Resource Autocomplete] [Time Entry Grid] │
└─────────────────────────────────────────────────────────┘
Implementation:
- Left panel: MUI X DataGrid with status chips, assignee avatars, priority bars
- Right panel: Gantt timeline synchronized to DataGrid selection
- Sync: Click DataGrid row → scroll Gantt to task; click Gantt bar → select DataGrid row
- Detail drawer: MUI Drawer with RHF form, resource Autocomplete, sub-DataGrid of time entries
- Toolbar: MUI GridToolbarContainer with zoom controls, view switches, DateRangePicker
function ProjectManagementView({ tasks, links }) {
const [selectedTaskId, setSelectedTaskId] = useState<string | null>(null);
const [drawerOpen, setDrawerOpen] = useState(false);
const ganttRef = useRef<GanttAPI>(null);
const gridApiRef = useGridApiRef();
// Sync: DataGrid row click → Gantt scroll
const handleGridRowClick = useCallback((params: GridRowParams) => {
setSelectedTaskId(params.id as string);
ganttRef.current?.scrollToTask(params.id);
}, []);
// Sync: Gantt bar click → DataGrid selection
const handleGanttTaskClick = useCallback((task: Task) => {
setSelectedTaskId(task.id);
gridApiRef.current?.selectRow(task.id);
gridApiRef.current?.scrollToIndexes({ rowIndex: findRowIndex(task.id) });
}, []);
return (
<Box sx={{ display: 'flex', height: 'calc(100vh - 64px)' }}>
{/* Left: DataGrid */}
<Box sx={{ width: 400, borderRight: 1, borderColor: 'divider' }}>
<DataGrid
apiRef={gridApiRef}
rows={tasks}
columns={taskColumns}
rowSelectionModel={selectedTaskId ? [selectedTaskId] : []}
/>
</Box>
{/* Right: Gantt */}
<Box sx={{ flex: 1 }}>
<Gantt
ref={ganttRef}
tasks={tasks}
links={links}
=> { setSelectedTaskId(task.id); setDrawerOpen(true); }}
/>
</Box>
{/* Detail Drawer */}
<Drawer
anchor="right"
open={drawerOpen}
=> setDrawerOpen(false)}
PaperProps={{ sx: { width: 480 } }}
>
{selectedTaskId && (
<TaskDetailForm
taskId={selectedTaskId}
=> { refetchTasks(); setDrawerOpen(false); }}
/>
)}
</Drawer>
</Box>
);
}
The Gantt library handles only timeline rendering and dependency logic.
MUI handles all surrounding UI — dialogs, forms, notifications, navigation, theming, and data tables.
Result: unified, branded experience matching your design system.
1---2name: project-management-integrations3description: Gantt charts, Kanban boards, scheduling, and resource management libraries that integrate with MUI — SVAR, DHTMLX, Bryntum, Syncfusion, FullCalendar, dnd-kit, and architecture patterns4---5
6# Project Management Integrations for MUI Apps
7
8Gantt charts, Kanban boards, scheduling, and resource management libraries
9that compose with MUI's theme, layout, and component slots.
10
11MUI X does not ship a native Gantt component (roadmap item, not yet available).
12Use these libraries for the timeline and MUI for everything around it.
13
14---
15
16## Gantt Chart Libraries
17
18### SVAR React Gantt — Best Free Option (MIT)
19
20```bash
21npm install wx-react-gantt
22```
23
24**Free MIT core:**
25- Interactive drag-and-drop task editing on timeline
26- Task dependencies (FS, SS, EE, SE)
27- Hierarchical/summary tasks with collapsible groups
28- Customizable task bars, tooltips, grid columns, time scale
29- Multiple zoom levels, keyboard navigation, light/dark themes
30- Full TypeScript, React 19 compatible, Vite/Next.js
31- 10,000+ task performance
32
33**SVAR PRO (~$524/dev perpetual) adds:**
34- Working-day calendars per project/task/resource
35- Baselines (original plan vs current)
36- Auto-scheduling (tasks shift when dependencies change)
37- Split tasks, undo/redo, rollups, slack visualization
38- Export to PDF, PNG, Excel
39- Import/export MS Project files
40
41**MUI integration:**
42```tsx
43import { Gantt } from 'wx-react-gantt';
44import Paper from '@mui/material/Paper';
45import Button from '@mui/material/Button';
46import Dialog from '@mui/material/Dialog';
47
48function ProjectGantt({ tasks, links }) {
49 const [editTask, setEditTask] = useState(null);
50
51 return (
52 <Paper sx={{ height: 600, overflow: 'hidden' }}>
53 {/* MUI toolbar above Gantt */}
54 <Box sx={{ display: 'flex', gap: 1, p: 1, borderBottom: 1, borderColor: 'divider' }}>
55 <Button size="small" onClick={handleZoomIn}>Zoom In</Button>
56 <Button size="small" onClick={handleZoomOut}>Zoom Out</Button>
57 <DateRangePicker slotProps={{ textField: { size: 'small' } }} />
58 </Box>
59
60 {/* Gantt handles timeline rendering */}
61 <Gantt
62 tasks={tasks}
63 links={links}
64 onTaskDblClick={(task) => setEditTask(task)}
65 />
66
67 {/* MUI Dialog for task editing */}
68 <Dialog open={!!editTask} onClose={() => setEditTask(null)} maxWidth="sm" fullWidth>
69 <TaskEditForm task={editTask} onSave={handleSave} />
70 </Dialog>
71 </Paper>
72 );
73}
74```
75
76### DHTMLX React Gantt — Enterprise (Paid)
77
78```bash
79npm install @dhx/react-gantt
80```
81
82- Renders 30,000+ tasks smoothly
83- Auto-scheduling, critical path calculation
84- Resource management with histogram (PRO)
85- Working time calendars at project/task/resource levels
86- Undo/redo with Valtio or Redux
87- **Official MUI examples** in docs using MUI Button, Divider, ButtonGroup, icons
88- Standard: free (limited); PRO: ~$699/dev; Team: ~$1,299
89
90### Bryntum Gantt — MS Project Feature Parity (Paid)
91
92- MS Project-equivalent scheduling engine (ChronoGraph)
93- Critical path with early/late dates, free slack, total slack
94- Baselines: any number of snapshots
95- Progress line visualization
96- Resource assignment column with multi-select picker
97- CSS variables align to MUI theme tokens
98- ~$680-940/dev perpetual
99- **SaaS/OEM requires separate license** — contact before committing
100
101### Syncfusion React Gantt — Free for Small Teams
102
103- **Free Community License** for <$1M revenue, ≤5 devs, ≤10 employees
104- Critical path with `enableCriticalPath` prop
105- Resource view, filtering, split tasks, undo/redo
106- Part of 1,900+ component suite
107- Export PDF/CSV/Excel
108
109### FullCalendar Premium — Resource Scheduling ($480/dev/yr)
110
111- Free MIT: day/week/month calendar, drag-and-drop
112- Premium: Resource Timeline (horizontal, Gantt-like), Vertical Resource view
113- Best for contractor availability/booking views, not dependency Gantt
114
115---
116
117## Feature Comparison Matrix
118
119| Feature | SVAR Free | SVAR PRO | DHTMLX PRO | Bryntum | Syncfusion Community |
120|---------|:---------:|:--------:|:----------:|:-------:|:--------------------:|
121| **Cost** | Free MIT | ~$524/dev | ~$699/dev | ~$680/dev | Free (<$1M) |
122| **React native** | ✓ | ✓ | ✓ | Wrapper | Wrapper |
123| **Drag/drop** | ✓ | ✓ | ✓ | ✓ | ✓ |
124| **Dependencies** | ✓ | ✓ | ✓ | ✓ | ✓ |
125| **Critical path** | — | — | ✓ | ✓ | ✓ |
126| **Baselines** | — | ✓ | ✓ | ✓ | ✓ |
127| **Auto-scheduling** | — | ✓ | ✓ | ✓ | ✓ |
128| **Resource mgmt** | — | — | ✓ | ✓ | ✓ |
129| **Working calendars** | — | ✓ | ✓ | ✓ | ✓ |
130| **MS Project import** | — | ✓ | — | — | — |
131| **Export PDF/Excel** | — | ✓ | ✓ | ✓ | ✓ |
132| **Undo/redo** | — | ✓ | ✓ | ✓ | ✓ |
133| **MUI theming** | ✓ | ✓ | ✓ documented | ✓ | CSS vars |
134| **SaaS/OEM allowed** | ✓ MIT | ✓ | ✓ | Need OEM | Needs paid |
135| **Max tasks** | 10K+ | 10K+ | 30K+ | 30K+ | Large |
136
137---
138
139## Kanban Board Libraries
140
141### dnd-kit — Modern Standard (MIT Free)
142
143```bash
144npm install @dnd-kit/core @dnd-kit/sortable @dnd-kit/utilities
145```
146
147The successor to `react-beautiful-dnd`. Community standard for React DnD.
148
149```tsx
150import {
151 DndContext,
152 DragOverlay,
153 closestCorners,
154 PointerSensor,
155 KeyboardSensor,
156 useSensor,
157 useSensors,
158} from '@dnd-kit/core';
159import { SortableContext, verticalListSortingStrategy } from '@dnd-kit/sortable';
160import { useSortable } from '@dnd-kit/sortable';
161import { CSS } from '@dnd-kit/utilities';
162import Paper from '@mui/material/Paper';
163import Card from '@mui/material/Card';
164import Typography from '@mui/material/Typography';
165import Avatar from '@mui/material/Avatar';
166import Chip from '@mui/material/Chip';
167import Stack from '@mui/material/Stack';
168
169// Sortable card using MUI Card
170function KanbanCard({ task }: { task: Task }) {
171 const { attributes, listeners, setNodeRef, transform, transition, isDragging } = useSortable({
172 id: task.id,
173 });
174
175 const style = {
176 transform: CSS.Transform.toString(transform),
177 transition,
178 opacity: isDragging ? 0.5 : 1,
179 };
180
181 return (
182 <Card
183 ref={setNodeRef}
184 style={style}
185 {...attributes}
186 {...listeners}
187 sx={{
188 p: 1.5, mb: 1, cursor: 'grab',
189 '&:hover': { borderColor: 'primary.main', boxShadow: 2 },
190 border: '1px solid', borderColor: 'divider', borderRadius: 2,
191 }}
192 >
193 <Typography variant="body2" fontWeight={600}>{task.title}</Typography>
194 <Stack direction="row" spacing={1} sx={{ mt: 1 }} alignItems="center">
195 <Chip label={task.priority} size="small" color={priorityColor(task.priority)} />
196 <Avatar src={task.assignee.avatar} sx={{ width: 24, height: 24 }} />
197 </Stack>
198 </Card>
199 );
200}
201
202// Kanban column
203function KanbanColumn({ column, tasks }: { column: Column; tasks: Task[] }) {
204 return (
205 <Paper
206 sx={{
207 width: 280, minHeight: 400, p: 1, borderRadius: 2,
208 bgcolor: 'action.hover',
209 }}
210 >
211 <Stack direction="row" justifyContent="space-between" alignItems="center" sx={{ mb: 1, px: 1 }}>
212 <Typography variant="subtitle2">{column.title}</Typography>
213 <Chip label={tasks.length} size="small" />
214 </Stack>
215
216 <SortableContext items={tasks.map((t) => t.id)} strategy={verticalListSortingStrategy}>
217 {tasks.map((task) => (
218 <KanbanCard key={task.id} task={task} />
219 ))}
220 </SortableContext>
221 </Paper>
222 );
223}
224
225// Board with drag between columns
226function KanbanBoard({ columns, tasks }: KanbanBoardProps) {
227 const sensors = useSensors(
228 useSensor(PointerSensor, { activationConstraint: { distance: 8 } }),
229 useSensor(KeyboardSensor),
230 );
231
232 const [activeId, setActiveId] = useState<string | null>(null);
233
234 return (
235 <DndContext
236 sensors={sensors}
237 collisionDetection={closestCorners}
238 onDragStart={({ active }) => setActiveId(active.id as string)}
239 onDragEnd={handleDragEnd}
240 onDragOver={handleDragOver}
241 >
242 <Stack direction="row" spacing={2} sx={{ overflowX: 'auto', p: 2 }}>
243 {columns.map((col) => (
244 <KanbanColumn
245 key={col.id}
246 column={col}
247 tasks={tasks.filter((t) => t.columnId === col.id)}
248 />
249 ))}
250 </Stack>
251
252 {/* Ghost clone while dragging */}
253 <DragOverlay>
254 {activeId && (
255 <Card sx={{ p: 1.5, boxShadow: 8, borderRadius: 2, opacity: 0.9 }}>
256 <Typography variant="body2">{findTask(activeId)?.title}</Typography>
257 </Card>
258 )}
259 </DragOverlay>
260 </DndContext>
261 );
262}
263```
264
265**Pattern:** Intercept `onDragEnd` to call ASP.NET Core PATCH endpoint for column/order change. Use `DragOverlay` with MUI elevation for smooth animated ghost.
266
267### react-mui-scheduler — MUI-Native Calendar (MIT Free)
268
269```bash
270npm install react-mui-scheduler
271```
272
273- Month/week/day/timeline views built on `@mui/material`
274- Event grouping by resource
275- Search bar, date picker, view switcher in toolbar
276- Localization: 8 languages
277- Best for appointment/availability calendars (contractor scheduling, event booking)
278
279### Pragmatic Drag and Drop (Atlassian) — MIT Free
280
281```bash
282npm install @atlaskit/pragmatic-drag-and-drop
283```
284
285- Powers Jira and Trello's drag-and-drop
286- Lower-level API than dnd-kit, purpose-built for production kanban at scale
287- MIT open-source since 2024
288
289---
290
291## Recommended Stack by Use Case
292
293| Use Case | Library | License |
294|----------|---------|---------|
295| Contractor project timeline (internal) | SVAR Gantt Free | MIT |
296| Full MS Project-equivalent Gantt in SaaS | Bryntum OEM or DHTMLX PRO | Paid |
297| Free Gantt for early SaaS <$1M revenue | Syncfusion Community | Free |
298| Resource booking / availability calendar | FullCalendar Premium + MUI | $480/yr |
299| Kanban task board (Jira-style) | dnd-kit + MUI Cards | MIT |
300| Contractor appointment scheduler | react-mui-scheduler | MIT |
301| Flexible timeline (bookings, media) | gantt-schedule-timeline-calendar | Freemium |
302
303---
304
305## Architecture: Gantt + MUI DataGrid Sidebar
306
307The most powerful project management UI combines a Gantt timeline with a companion DataGrid.
308
309```
310┌─────────────────────────────────────────────────────────┐
311│ MUI AppBar Toolbar │
312│ [Zoom In] [Zoom Out] [View: Gantt|Kanban|Calendar] │
313│ [DateRangePicker] [Export] │
314├───────────────────────┬─────────────────────────────────┤
315│ MUI X DataGrid │ Gantt Timeline (SVAR/DHTMLX) │
316│ ┌─────────────────┐ │ ┌─────────────────────────────┐│
317│ │ Task | Status │ │ │ ▓▓▓▓▓▓░░░ Project Alpha ││
318│ │ Alpha| ● Active │◄─┼──│ ▓▓▓▓░░░░░ Task 1 ││
319│ │ Beta | ○ Draft │ │ │ ▓▓▓▓▓░░ Task 2 ──────►││
320│ │ Gamma| ● Active │ │ │ ▓▓▓ Task 3 ││
321│ └─────────────────┘ │ └─────────────────────────────┘│
322├───────────────────────┴─────────────────────────────────┤
323│ MUI Drawer (right) — Task Detail Form │
324│ [RHF Form] [Resource Autocomplete] [Time Entry Grid] │
325└─────────────────────────────────────────────────────────┘
326```
327
328**Implementation:**
329
3301. **Left panel:** MUI X DataGrid with status chips, assignee avatars, priority bars
3312. **Right panel:** Gantt timeline synchronized to DataGrid selection
3323. **Sync:** Click DataGrid row → scroll Gantt to task; click Gantt bar → select DataGrid row
3334. **Detail drawer:** MUI Drawer with RHF form, resource Autocomplete, sub-DataGrid of time entries
3345. **Toolbar:** MUI GridToolbarContainer with zoom controls, view switches, DateRangePicker
335
336```tsx
337function ProjectManagementView({ tasks, links }) {
338 const [selectedTaskId, setSelectedTaskId] = useState<string | null>(null);
339 const [drawerOpen, setDrawerOpen] = useState(false);
340 const ganttRef = useRef<GanttAPI>(null);
341 const gridApiRef = useGridApiRef();
342
343 // Sync: DataGrid row click → Gantt scroll
344 const handleGridRowClick = useCallback((params: GridRowParams) => {
345 setSelectedTaskId(params.id as string);
346 ganttRef.current?.scrollToTask(params.id);
347 }, []);
348
349 // Sync: Gantt bar click → DataGrid selection
350 const handleGanttTaskClick = useCallback((task: Task) => {
351 setSelectedTaskId(task.id);
352 gridApiRef.current?.selectRow(task.id);
353 gridApiRef.current?.scrollToIndexes({ rowIndex: findRowIndex(task.id) });
354 }, []);
355
356 return (
357 <Box sx={{ display: 'flex', height: 'calc(100vh - 64px)' }}>
358 {/* Left: DataGrid */}
359 <Box sx={{ width: 400, borderRight: 1, borderColor: 'divider' }}>
360 <DataGrid
361 apiRef={gridApiRef}
362 rows={tasks}
363 columns={taskColumns}
364 onRowClick={handleGridRowClick}
365 rowSelectionModel={selectedTaskId ? [selectedTaskId] : []}
366 />
367 </Box>
368
369 {/* Right: Gantt */}
370 <Box sx={{ flex: 1 }}>
371 <Gantt
372 ref={ganttRef}
373 tasks={tasks}
374 links={links}
375 onTaskClick={handleGanttTaskClick}
376 onTaskDblClick={(task) => { setSelectedTaskId(task.id); setDrawerOpen(true); }}
377 />
378 </Box>
379
380 {/* Detail Drawer */}
381 <Drawer
382 anchor="right"
383 open={drawerOpen}
384 onClose={() => setDrawerOpen(false)}
385 PaperProps={{ sx: { width: 480 } }}
386 >
387 {selectedTaskId && (
388 <TaskDetailForm
389 taskId={selectedTaskId}
390 onSave={() => { refetchTasks(); setDrawerOpen(false); }}
391 />
392 )}
393 </Drawer>
394 </Box>
395 );
396}
397```
398
399The Gantt library handles only timeline rendering and dependency logic.
400MUI handles all surrounding UI — dialogs, forms, notifications, navigation, theming, and data tables.
401Result: unified, branded experience matching your design system.