1. The default linkLayer value is set to "Above"
and you can see this behavior in the Links demo as well. Instead of using z-index
, it uses the two different layers that are inserted into the DOM in a specific order (before or after the events layer).
If you specify z-index
for your event content, the events will pop up in front of everything, so try to avoid that.
2. You can’t modify the path at the moment, but it would be possible to add a switch for that.
The Scheduler uses this shorter path when the start of the next event coincides with the end of the previous event—an arrangement that is quite common. In contrast, the “S” type path looks a bit odd in these scenarios. The “S” line path is used when the next event starts before the previous one ends, indicating a dependency that is typically invalid.