Hi
Yunus,
Greetings
from Syncfusion support.
Yes,
we have support to display event markers in the Gantt Chart. They can be
initialized using the GanttEventMarkers
property. You can use the Day and Label properties to define the date and label
for them. You can also use the CssClass property to customize them. The below
code snippets demonstrate the solution.
Index.razor
<GanttEventMarkers>
<GanttEventMarker Day="@Event" Label="Project
approval and kick-off" CssClass="e-custom-event-marker"></GanttEventMarker>
</GanttEventMarkers>
<style>
.e-gantt .e-gantt-chart .e-custom-event-marker {
width: 1px;
border-left: 2px red dotted;
}
</style>
|
Sample: https://www.syncfusion.com/downloads/support/directtrac/general/ze/175385-1727817590
For
more information about event markers in Gantt Chart, please refer to our Online
Documentation and Demos.
Online
Documentation:
https://blazor.syncfusion.com/documentation/gantt-chart/event-markers
Demos: https://blazor.syncfusion.com/demos/gantt-chart/eventmarkers?theme=fluent
Regards,
Monisha.