Our pure JavaScript Scheduler component


Post by Aniket »

team,

I am using dependencies feature to plot my dependencies between events. But the events are consecutive without gaps hence I cannot see from where events start and end.

I saw terminalCls property in the docs but does not help.

I am attaching a screenshot

Attachments
dependenciesissue.png
dependenciesissue.png (50.32 KiB) Viewed 1006 times

Post by mats »

Sorry, I don't see a question in your post - please specify what you need help with.


Post by Aniket »

Mats,

If you see the screenshot attached above, I have events clogged up without gaps, So I dont get to see where my dependenices start and end.

Any help with above?


Post by sergey.maltsev »

Hi!

We currently don't support arrows between adjacent events (No dependency between Interview -> Press meeting).
Could be a sponsored effort. Please see options here: https://www.bryntum.com/services/

The other one with the hidden arrow would be fixed in this issue.
https://github.com/bryntum/support/issues/1122

Mean while this workaround with styling which should make dependency line visible above the event.

<style>
	.b-sch-foreground-canvas > svg {
		z-index: 5;
	}
</style>

Post by Aniket »

ok sergey,

I saw a property called terminalCls in the docs, does it changes the pointer of dependencies to up,down right or left of the event?

I tried but no luck


Post by mats »

I saw a property called terminalCls in the docs, does it changes the pointer of dependencies to up,down right or left of the event?

No that's for another purpose.


Post Reply