The crosshairType property (string) determines the crosshair mode used by the JavaScript Scheduler component.
DayPilot.Scheduler.crosshairType"Disabled" - turns the crosshair off.
"Full" - shows the full crosshair display.
"Header" - shows the crosshair in the headers.
"Header"JavaScript
const dp = new DayPilot.Scheduler("dp", {
crosshairType: "Full",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
crosshairType: "Full",
// ...
};React
<DayPilotScheduler
crosshairType="Full"
{/* ... */}
/>Vue
<DayPilotScheduler
crosshairType="Full"
<!-- ... -->
/>Crosshair [doc.daypilot.org]