Hi Dario,
Thank you for using Syncfusion products.
In order to update the values dynamically changed for the DivisionsPerHour property, you can use the DivisionsPerHourChanged event via the Appearance property and the scheduleControl1.Update() method to update the schedule control. Please make use of the below code snippet and the attached sample.
CodeSnippet:
// Trigger the required event.
this.scheduleControl1.Appearance.DivisionsPerHourChanged += new EventHandler(Appearance_DivisionsPerHourChanged);
void Appearance_DivisionsPerHourChanged(object sender, EventArgs e)
{
this.scheduleControl1.Update();
}
Note:
Please make use of the below sample. Please let us know if we missed anything.
Sample:
Regards,
Amresh S.