The freeHandSelectionEnabled property (boolean) enables a free-hand date range selection using drag and drop.
DayPilot.Navigator.freeHandSelectionEnabledfalseJavaScript
const dp = new DayPilot.Navigator("dp", {
freeHandSelectionEnabled: true,
// ...
});
dp.init();Angular
<daypilot-navigator [config]="config"></daypilot-navigator>config: DayPilot.NavigatorConfig = {
freeHandSelectionEnabled: true,
// ...
};React
<DayPilotNavigator
freeHandSelectionEnabled={true}
{/* ... */}
/>Vue
<DayPilotNavigator
:freeHandSelectionEnabled="true"
<!-- ... -->
/>