Hello,
I would like to display not only the text of an appointment in the scheduler but also
Title: --
Time: --
Customers: --,--,--
Is that possible?
Hello,
I would like to display not only the text of an appointment in the scheduler but also
Title: --
Time: --
Customers: --,--,--
Is that possible?
Hi @Tobias_Brenner,
You can use the Template option. Have in mind though that appointments in month view have fixed height. Here is something to try:
RadzenScheduler @ref=@scheduler SlotRender=@OnSlotRender style="height: 768px;" TItem="Appointment" Data=@appointments StartProperty="Start" EndProperty="End"
TextProperty="Text" SelectedIndex="2"
SlotSelect=@OnSlotSelect AppointmentSelect=@OnAppointmentSelect AppointmentRender=@OnAppointmentRender>
<Template>
<div>@context.Start:@context.End</div>
<div>@context.Text</div>
</Template>
<ChildContent>
<RadzenDayView />
<RadzenWeekView />
<RadzenMonthView />
<RadzenYearView />
</ChildContent>
</RadzenScheduler>
Thank you for your reply.
How can I adjust the size of the boxes for monthly view?
Because at montly view, multiple lines are not working
You can't as I said in my initial reply. I would suggest using a tooltip instead.
Ok, thank you very much
Is there a way to modify the tooltip color at scheduler?