Hello! Telerik for Winform has been really nice so far. I'm trying to see how these things can be accomplished with the Scheduler.
I hope it is okay to ask multiple questions in a single post since it is all related to the same control. If not, I can make a new post for each question.
1. Only show the Dates that are within X month.
Bad Paint edit of what I'd like to achieve
I want to be able to only show the dates that are for the selected month (or programmatically set month)
Ex: User selects July 2022, the scheduler should only show July 1 through July 30 and nothing from June or Aug.
I can hide the dates/cells from showing up, but that leaves empty spaces. It would be nice to fill up those spaces
If e.CellElement.Date.Month <> Date.Now.Month Then
If Not (TypeOf e.CellElement Is SchedulerHeaderCellElement) Then
e.CellElement.Visibility = ElementVisibility.Hidden
End If
End If
2. Change all cell colors to be the same instead of the default where its alternates between light/dark colors
3. Showing full month shrinks the cells, it only fits 1 appointment.
I'm guessing if #1 is possible, there will be more room to change the size of the cells?
I'm hoping some of these questions can be answered, it would greatly help me not waste the trial times