The update() method updates and redraws the Queue component. Two update modes are supported:
1. You can make the changes by changing the properties directly:
dp.lineSpace = 5; dp.update();
2. You can pass a set of changes using the options parameter:
dp.update({lineSpace: 5});
This method cannot be called after the component has been disposed using dispose(). In that case, an exception will be thrown.
DayPilot.Calendar.update([options]);
The options object can specify any of the standard properties and event handlers.
The following options properties have a special meaning: