Hi Alex,
Greetings from Syncfusion support.
We have validated your reported query “how can we get all of the events displayed and the cell width automatically reduced” and suspect that you want to remove the horizontal scroller while rendering scheduler to view all the events and achieved it by using following CSS with TimeScale property. We have prepared the below sample for your reference.
<SfSchedule TValue="ResourceAppointmentData" Width="100%" Height="800px" @bind-SelectedDate="@CurrentDate" @bind-CurrentView="@CurrentView" CssClass = "schedule-cell-dimension" >
<ScheduleGroup Resources="@GroupData">ScheduleGroup>
<ScheduleResources>
<ScheduleResource TItem="ResourceData" TValue="int" DataSource="@ProjectData" Field="ProjectId" Title="Choose Project" Name="Projects" TextField="Text" IdField="Id" ColorField="Color">ScheduleResource>
<ScheduleResource TItem="ResourceData" TValue="int[]" DataSource="@TaskData" Field="TaskId" Title="Category" Name="Categories" TextField="Text" IdField="Id" GroupIDField="GroupId" ColorField="Color" AllowMultiple="true">ScheduleResource>
ScheduleResources>
<ScheduleTimeScale Enable="false" />
<ScheduleViews>
<ScheduleView Option="View.TimelineDay">ScheduleView>
<ScheduleView Option="View.TimelineWeek">ScheduleView>
<ScheduleView Option="View.TimelineMonth">ScheduleView>
ScheduleViews>
<ScheduleEventSettings DataSource="@DataSource">ScheduleEventSettings>
SfSchedule>
<style>
.schedule-cell-dimension.e-schedule .e-timeline-view .e-date-header-wrap table col,
.schedule-cell-dimension.e-schedule .e-timeline-view .e-content-wrap table col {
width: 40px;
}
.schedule-cell-dimension.e-schedule .e-timeline-month-view .e-date-header-wrap table col,
.schedule-cell-dimension.e-schedule .e-timeline-month-view .e-content-wrap table col {
width: 20px;
}
.schedule-cell-dimension.e-schedule .e-timeline-view .e-content-wrap,
.schedule-cell-dimension.e-schedule .e-timeline-month-view .e-content-wrap {
overflow-x: hidden;
}
style>
Kindly try with the above sample and get back to us if you need any further assistance.
Regards,
Vinitha