Hi Dominik,
Greetings from Syncfusion.
As of now, SfScheduler doesn’t have support to customize the time format of dragging time indicator. We have logged a feature request for the same. We will implement this feature in any of our upcoming release.
Thank you for requesting this feature and helping us to define it. We are always trying to make our products better and feature requests like yours are a key part of our product growth efforts. Now you can now track the current status of your request and contact us for any further inquiries through this link.
Feedback link: https://www.syncfusion.com/feedback/19316/support-to-customize-the-appearance-of-dragging-time-indicator png to ico
If you have any more specifications or suggestions to the feature request, you can add it as a comment in the portal and cast your vote to make it count.
Regards,
Karthik Raja A
[C#]
this.scheduler.DragDropSettings.TimeIndicatorFormat = "HH mm";
[XAML]
<scheduler:SfScheduler x:Name="scheduler">
<scheduler:SfScheduler.DragDropSettings>
<scheduler:DragDropSettings TimeIndicatorFormat="HH mm"/>
</scheduler:SfScheduler.DragDropSettings>
</scheduler:SfScheduler>
|