syncfusion-blazor-gantt-chart
Implements Syncfusion Blazor Gantt for project scheduling. Covers SfGantt, GanttTaskFields, GanttColumns, GanttEditSettings, taskbar editing, dependencies, resources, timeline, critical path, baselines, and Excel/PDF export. Applicable for Blazor Gantt charts, task scheduling, WBS, and Syncfusion.Blazor.Gantt integration.
What this skill does
# Implementing Syncfusion Blazor Gantt Chart ## When to Use This Skill Use this skill when the user needs to: - **Implement project scheduling interfaces** similar to Microsoft Project with visual timeline and task management - **Display hierarchical task structures** with parent-child relationships, dependencies, and progress tracking - **Enable interactive timeline editing** through drag-and-drop taskbars, resize operations, and dependency linking - **Manage project resources** including personnel allocation, workload tracking, and overallocation detection - **Configure complex timelines** with custom zoom levels, working hours, holidays, time zones, and duration units - **Export project data** to Excel, CSV, or PDF formats with customizable layouts and styling - **Handle remote data** through Entity Framework, Dapper, custom adaptors, or REST API connections - **Implement critical path analysis** for identifying tasks that impact project completion dates - **Create resource views** showing task allocation and utilization across team members and equipment This skill provides comprehensive guidance for the `SfGantt<TValue>` component, covering all aspects from basic setup through advanced features like split tasks, baseline tracking, and custom PDF exports. --- ## Documentation and Navigation Guide This skill is organized into 14 major sections. Each section contains focused reference files covering specific features. Use this navigation guide to identify which reference to read based on the user's needs. --- ### 1. Getting Started **When to read:** Initial setup, installation, platform-specific configuration ๐ **Read:** [references/getting-started-webassembly.md](references/getting-started-webassembly.md) - NuGet package installation for Blazor WebAssembly - Basic component setup and registration - CSS theme imports and configuration - First minimal Gantt chart example - Task data model and field mapping ๐ **Read:** [references/getting-started-server.md](references/getting-started-server.md) - Blazor Server-specific setup and services - Service registration in Program.cs - Component initialization differences --- ### 2. Data Binding and Remote Data **When to read:** Setting up data sources, connecting to databases, custom data adaptors ๐ **Read:** [references/data-binding-and-field-mapping.md](references/data-binding-and-field-mapping.md) - Hierarchical and self-referential data structures - GanttTaskFields configuration and mapping - Required vs optional fields - SfDataManager integration - Load-on-demand for large datasets ๐ **Read:** [references/remote-data-adaptors.md](references/remote-data-adaptors.md) - UrlAdaptor for REST APIs - Custom DataAdaptor implementation - Handling CRUD, search, filter, sort operations - Injecting services and passing parameters --- ### 3. Task Management **When to read:** Creating, editing, deleting tasks, dependencies, scheduling, undo/redo, critical path ๐ **Read:** [references/task-scheduling-and-hierarchy.md](references/task-scheduling-and-hierarchy.md) - Nested hierarchical vs self-referential (ParentID) data structures - Task types: parent (rollup), child (work item), milestone (zero-duration), unscheduled - Auto-scheduling and manual scheduling approaches - Duration units: Day, Hour, Minute - Hierarchy effects: parent rollup, expand/collapse, indent/outdent ๐ **Read:** [references/task-crud-operations.md](references/task-crud-operations.md) - Enable editing โ GanttEditSettings (AllowAdding, AllowEditing, AllowDeleting, AllowTaskbarEditing) - Edit modes โ Auto, Dialog, Taskbar - Adding tasks via toolbar, context menu, or programmatic API - Dialog customization โ expose only selected fields in the edit form - Remote CRUD โ InsertUrl, UpdateUrl, RemoveUrl, BatchUrl - Delete behavior โ cascade rules and child handling ๐ **Read:** [references/task-dependencies-and-validation.md](references/task-dependencies-and-validation.md) - Dependency types: FS, SS, FF, SF - Predecessor field mapping via GanttTaskFields.Dependency - Dependency string format (e.g., `3FS`, `5SS+2d`) - Circular dependency detection - Auto-scheduling interaction with dependency changes ๐ **Read:** [references/critical-path-and-analysis.md](references/critical-path-and-analysis.md) - EnableCriticalPath โ highlights critical tasks in red automatically - GanttCriticalPathSettings.SlackValue โ widen critical zone to near-critical tasks - "CriticalPath" toolbar item โ user-facing toggle - QueryChartRowInfo + GanttTaskModel.IsCritical โ custom critical taskbar color/style - GetCriticalTasksAsync() โ retrieve critical task list programmatically - Calculation rules: progress < 100%, dependency-driven, recalculates on every change ๐ **Read:** [references/undo-redo-and-state.md](references/undo-redo-and-state.md) - EnableUndoRedo + UndoRedoActions list โ track 23 action types (Add, Edit, Delete, TaskbarEdit, Sort, Filter, ZoomIn/Out, Indent/Outdent, RowDragAndDrop, etc.) - MaxUndoRedoSteps โ limit history size (default: 20) - UndoAsync() / RedoAsync() โ programmatic undo/redo - "Undo" / "Redo" toolbar items โ keyboard shortcut Ctrl+Z / Ctrl+Y - OnUndoRedo event โ react after undo/redo with CanUndo/CanRedo state - State preservation patterns โ expand/collapse, selection, zoom, filters, scroll position --- ### 4. Timeline Configuration **When to read:** Timeline views, zoom levels, working hours, holidays, time zones, effort tracking ๐ **Read:** [references/timeline-configuration.md](references/timeline-configuration.md) - Single-tier vs dual-tier timeline layouts - GanttTimelineSettings, GanttTopTierSettings, GanttBottomTierSettings - TimelineViewMode units: Hour, Day, Week, Month, Year - TimelineUnitSize โ controls cell width / density - Format strings for tier labels - ProjectStartDate / ProjectEndDate for visible date range ๐ **Read:** [references/zooming-and-view-control.md](references/zooming-and-view-control.md) - ZoomIn, ZoomOut, ZoomToFit toolbar items - ZoomToFit โ fits the entire schedule into the visible viewport - Programmatic zoom via toolbar or code - Recommended defaults: day/week for operational, week/month for roadmap views ๐ **Read:** [references/working-time-holidays-timezone.md](references/working-time-holidays-timezone.md) - DayWorkingTime โ define working hours per day (e.g., 8-hour day) - WorkWeek โ specify which days are working days - GanttHolidays / GanttHoliday โ non-working dates with From/To/Label - Timezone considerations for multi-region teams - Impact on task duration calculations and auto-scheduling ๐ **Read:** [references/work-and-effort-tracking.md](references/work-and-effort-tracking.md) - Work field mapping in GanttTaskFields.Work - Task types: FixedDuration, FixedWork, FixedUnit - Work = Duration ร WorkingHoursPerDay ร (Unit / 100) - Resource allocation units affect work calculation - WorkUnit property (Hour, Day, Minute) --- ### 5. Resources **When to read:** Resource assignment, resource views, overallocation detection, assignment CRUD ๐ **Read:** [references/resources-and-allocation.md](references/resources-and-allocation.md) - GanttResource โ DataSource, Id, Name, MaxUnits, Group field mappings - GanttAssignmentFields โ PrimaryKey, TaskID, ResourceID, Units - ResourceData model (ResourceId, ResourceName, MaxUnit) + AssignmentModel (PrimaryId, TaskID, ResourceId, Unit) - Assign resources via cell editing (GanttResourceColumn), dialog, or programmatically - AddResourceAssignmentAsync / UpdateResourceAssignmentAsync / DeleteResourceAssignmentAsync - Task types with resources: FixedDuration, FixedWork, FixedUnit - ViewType.ResourceView โ resource-centric hierarchy (resources as parents, tasks as children) - ShowOverallocation="true" โ highlights over-allocated date ranges in resource view - Over-allocation = daily work from all tasks > DayWorkingHours ร MaxUnits / 100 - GanttLabelSettings.RightLabel="Resources" โ show resource names in taskbar label ๐ **Read:** [ref
Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit โ setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard โ shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.