Javascript 如何在Flopple.js中排列并行任务右侧的任务?

Javascript 如何在Flopple.js中排列并行任务右侧的任务?,javascript,raphael,flowchart,Javascript,Raphael,Flowchart,我从floppt.js github交叉发布这篇文章以吸引更多关注 下面发布的图片是由floppt.js实际生成的 真实图像 我使用了相当多的并行任务,我注意到它们没有排成一行 我所期望的 右侧元素垂直对齐 细节 我之所以使用这些IO或子例程,是因为它们进一步阐述了各个进程中发生的事情 我是否正确使用并行任务?有没有办法使右侧的并行任务对齐 我的代码是我为生成实际图像而编写的 st=>start e=>end vendor_submi

我从floppt.js github交叉发布这篇文章以吸引更多关注

下面发布的图片是由floppt.js实际生成的

真实图像 我使用了相当多的并行任务,我注意到它们没有排成一行

我所期望的 右侧元素垂直对齐

细节 我之所以使用这些IO或子例程,是因为它们进一步阐述了各个进程中发生的事情

我是否正确使用并行任务?有没有办法使右侧的并行任务对齐

我的代码是我为生成实际图像而编写的

        st=>start
        e=>end
        vendor_submit=>parallel: Vendor Submit Files
        files=>inputoutput: 1 Excel per quotation
        1 PDF per quotation
        1 Excel as summary
        identify_type=>operation: PSS1 identify ASP/3PP/RES 
        check_completeness=>parallel: PSS1 check for completeness
        data_submitted=>inputoutput: quote no.
        quote value
        project
        enter_quotation_data=>parallel: PSS1 enter quotation data
        and assign PSS2
        notify_vendor=>subroutine: email notification to vendor
        breakdown_persite=>parallel: PSS2 breakdown per site
        breakdown_data_submitted=>inputoutput: Quotation Excel
        Quotation PDF
        Summary Excel

        st->vendor_submit
        vendor_submit(path1, right)->files
        vendor_submit(path2, bottom)->identify_type
        identify_type->check_completeness
        check_completeness(path1, right)->data_submitted
        check_completeness(path2, bottom)->enter_quotation_data
        enter_quotation_data(path1, right)->notify_vendor
        enter_quotation_data(path2, bottom)->breakdown_persite
        breakdown_persite(path1, right)->breakdown_data_submitted
        breakdown_persite(path2, bottom)->e

如果您看到下面的pull请求

您需要的是
align next=no
。下面是更新的图形代码

st=>start
e=>end
vendor_submit(align-next=no)=>parallel: Vendor Submit Files
files=>inputoutput: 1 Excel per quotation
1 PDF per quotation
1 Excel as summary
identify_type=>operation: PSS1 identify ASP/3PP/RES 
check_completeness(align-next=no)=>parallel: PSS1 check for completeness
data_submitted=>inputoutput: quote no.
quote value
project
enter_quotation_data(align-next=no)=>parallel: PSS1 enter quotation data
and assign PSS2
notify_vendor=>subroutine: email notification to vendor
breakdown_persite(align-next=no)=>parallel: PSS2 breakdown per site
breakdown_data_submitted=>inputoutput: Quotation Excel
Quotation PDF
Summary Excel

st->vendor_submit
vendor_submit(path1, right)->files
vendor_submit(path2, bottom)->identify_type
identify_type->check_completeness
check_completeness(path1, right)->data_submitted
check_completeness(path2, bottom)->enter_quotation_data
enter_quotation_data(path1, right)->notify_vendor
enter_quotation_data(path2, bottom)->breakdown_persite
breakdown_persite(path1, right)->breakdown_data_submitted
breakdown_persite(path2, bottom)->e
下面是相同的输出


这是预期的图形图像还是实际的?您应该添加预期的和实际的详细信息,以帮助人们更好地理解问题,这是实际情况。我也写了一些更明确的我所期望的。谢谢你的邀请,谢谢!这正是我需要的。