Hi Henrique,
Thank you for contacting Syncfusion support.
We have checked your requirement of ”Change or remove No Events text in InlineView” and you can hide the text by setting TimeTextColor property of MonthInlineViewStyle to Transparent in OnMonthInlineLoadedEvent.
Please refer the following code example for the same,
[C#]
schedule.OnMonthInlineLoadedEvent += Schedule_OnMonthInlineLoadedEvent;
private void Schedule_OnMonthInlineLoadedEvent(object sender, MonthInlineLoadedEventArgs e)
{
var appointments = e.appointments.Cast<ScheduleAppointment>().ToList();
MonthInlineViewStyle monthInlineViewStyle = new MonthInlineViewStyle();
if (appointments == null || appointments.Count <= 0)
{
monthInlineViewStyle.TimeTextColor = Color.Transparent;
}
e.monthInlineViewStyle = monthInlineViewStyle;
} |
We have prepared a sample for your requirement,
Please refer our UG documentation to know more about customizing InlineView,
We hope this helps. Please let us know if you would require any further assistance.
Regards,
Karthik Raja A