The cellHeight property (number) sets the height of the Navigator date picker cells in pixels.
Declaration
DayPilot.Navigator.cellHeightDefault Value
30Examples
JavaScript
const dp = new DayPilot.Navigator("dp", {
cellHeight: 24,
// ...
});
dp.init();Angular
<daypilot-navigator [config]="config"></daypilot-navigator>config: DayPilot.NavigatorConfig = {
cellHeight: 24,
// ...
};React
<DayPilotNavigator
cellHeight={24}
{/* ... */}
/>Vue
<DayPilotNavigator
:cellHeight="24"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot