FullScheduler - Calendar - Gallery Image

FullScheduler — 🧰 Agency Resource Planning — FullScheduler

Docs, demos, API

Highlight detail

agency-resource-planning
Back to highlight

🧰 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 colors to align with your design system.

  • Add role-specific icons/emojis in the template.