Hour scale for 40min

I need to use scheduler for 40 min scale.
Is this possible?
For example:
00:00
00:40
01:20
02:00

I need this for WeekView.

Hi,
due to implementation of the component the hour scale units can be always 1h.
However, the component allows customizing size and html content of the units, e.g. docs.dhtmlx.com/scheduler/sample … estep.html
So probably the required look can be implemented, but will require some coding (change the default labels, hide the separators of hours, add separators of 40min spans, pick matching background image)

Hi,

Are there any documentation for make this changes:
change the default labels,
hide the separators of hours,
add separators of XXmin spans

Hello,
most of this settings has to be done with the client side code
Please check this article, it describes how to redefine labels of scale units and add custom elements there.
docs.dhtmlx.com/scheduler/sizing … alespacing

hour_scale template allows specifying any html, so you can return a html structure with several 40min spans from there

In order to hide the default hour separators, you’ll probably need to use dhx_scale_hour class. Following style will hide the default separators without breaking the sizes of the scale:

.dhx_scale_hour{ border-bottom-color:transparent }

scheduler-net.com/docs/options-a … lates.html