Sequence Diagram: Start participant timeline from the bottom of the participant

This commit is contained in:
jayaprabhakar 2024-09-10 13:46:35 -07:00
parent dd0304387e
commit e564c395ba

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;