customize scheduler timing,

how can i change the scheduler timing such that to get in intervals in 5 minutes,
8:00, 8:05…
(see attached image)?

also I dont want the red dot to appear anytime, how to remove it?


Hi,
it can be done with some client-side coding.
Function to redefine hour scale template:
cshtml:[code] @Html.Raw(Model.Render())[/code]Where Model is instance of DHXScheduler. Call that function before scheduler initialization: .cs:[code] public virtual ActionResult Index() {

        var sched = new DHXScheduler(this);
        sched.BeforeInit.Add("configure()");[/code]

Red line can be disabled with following config:[code] public virtual ActionResult Index()
{

        var sched = new DHXScheduler(this);
        ...
        sched.Config.mark_now = false;[/code]