[Angular] Time marker hover event

Hello,

Is it possible to put the time marker (imported with “limit” and mark_now=true), on top of events ?
image
I’m currently searching for this option but I don’t find it on documentation…

Found the solution by putting in @Component({ … encapsultation : ViewEncapsulation.None}). And in the css of the component that use the timeline:

.dhx_matrix_now_time{

  z-index: 1001 !important;

}
1 Like