FullScheduler — 🧰 Agency Resource Planning — FullScheduler
Docs, demos, API
🧰 Agency Resource Planning
Allocate people to projects; show KPI chips and roles directly in event templates.
Event template
schedulerApi.setEventTemplate((e: FullSchedulerEvent) => {
return `
<div class="event-chip role-${e.data.role}">
<span class="name">${e.label}</span>
<span class="kpi">${e.data.load}%</span>
</div>`
})
Bulk update by project
schedulerApi.configureEventsByParam('data.projectId', 42, {
data: { status: 'on-track' }
})
Tips
Use
colorsto align with your design system.Add role-specific icons/emojis in the template.
