Merge pull request #5853 from jayaprabhakar/bug/5716_seq-actor-timeline-start

Sequence Diagram: Start participant timeline from the bottom of the participant
This commit is contained in:
Sidharth Vinod
2024-09-16 05:47:51 +00:00
committed by GitHub

View File

@@ -329,7 +329,7 @@ export const fixLifeLineHeights = (diagram, actors, actorKeys, conf) => {
const drawActorTypeParticipant = function (elem, actor, conf, isFooter) {
const actorY = isFooter ? actor.stopy : actor.starty;
const center = actor.x + actor.width / 2;
const centerY = actorY + 5;
const centerY = actorY + actor.height;
const boxplusLineGroup = elem.append('g').lower();
var g = boxplusLineGroup;