如何在流程图中的任何地方添加注释,SchemDraw

发布于 2025-01-21 21:07:27 字数 2363 浏览 0 评论 0原文

我是Python的新手。

我正在创建此流程图,我想在盒子中添加一些字幕(字幕1、2和3)。但是,我不知道该如何做出这样的注释。

另外,我想扩展盒子的区域(红色,蓝色和绿色)。

拜托,有人可以帮我吗?

pip install schemdraw
import schemdraw
import schemdraw.elements as elm

with schemdraw.Drawing() as d:
    d.config(fontsize=14)
    d += (b := flow.Start(w=6, h=2).label('Start'))
    d += flow.Arrow().down(d.unit/2)
    
    d += (step1 := flow.Box(w=8, h=2).label('Thing 1').fill(''))
    d += flow.Arrow().down(d.unit/2)
    d += (step2 := flow.Box(w=8, h=2).label('Thing 2').fill(''))
    d += flow.Arrow().down(d.unit/2)
    d += (step3 := flow.Box(w=8, h=2).label('Thing 3').fill(''))
    
    d += flow.Arrow().down(d.unit/2)
    d += (step4 := flow.Box(w=8, h=2).label('Thing 4').fill(''))
    d += flow.Arrow().down(d.unit/2)
    d += (step5 := flow.Box(w=8, h=2).label('Thing 5').fill(''))
    d += flow.Arrow().down(d.unit/2)
    d += (step6 := flow.Box(w=8, h=2).label('Thing 6').fill(''))
    
   
    # Activities
    d += flow.Arrow().right(d.unit/2).at(step1.E)
    d += (act1 := flow.Box(w=8, h=2).anchor('W').label('activity 1').fill(''))
    
    d += flow.Arrow().right(d.unit/2).at(step2.E)
    d += (act2 := flow.Box(w=8, h=2).anchor('W').label('activity 2').fill(''))

    d += flow.Arrow().right(d.unit/2).at(step3.E)
    d += (act3 := flow.Box(w=8, h=2).anchor('W').label('activity 3').fill(''))
 
    d += flow.Arrow().right(d.unit/2).at(step4.E)
    d += (act4 := flow.Box(w=8, h=2).anchor('W').label('activity 4').fill(''))
    
    d += flow.Arrow().right(d.unit/2).at(step5.E)
    d += (act5 := flow.Box(w=8, h=2).anchor('W').label('activity 5').fill(''))

    d += flow.Arrow().right(d.unit/2).at(step6.E)
    d += (act6 := flow.Box(w=8, h=2).anchor('W').label('activity 6').fill(''))
 
    d += (phase1 := elm.EncircleBox([step1, step2, step3, act1, act2, act3], padx=.8).linestyle('--').linewidth(2).color('red'))
    d += (phase2 := elm.EncircleBox([step4, step5, act4, act5], padx=.8).linestyle('--').linewidth(2).color('blue'))
    d += (phase3 := elm.EncircleBox([step6, act6], padx=.8).linestyle('--').linewidth(2).color('green'))

    #d += elm.Label().label('Parallel',loc="top").color('red')

预先感谢。

I am new to Python.

I'm creating this flowchart, and I'd like to add some captions (Subtitle 1, 2 and 3) to the boxes. However, I don't know how to make such annotations.

Also, I would like to expand the area of the boxes (red, blue and green).

Please, could someone help me with this?

pip install schemdraw
import schemdraw
import schemdraw.elements as elm

with schemdraw.Drawing() as d:
    d.config(fontsize=14)
    d += (b := flow.Start(w=6, h=2).label('Start'))
    d += flow.Arrow().down(d.unit/2)
    
    d += (step1 := flow.Box(w=8, h=2).label('Thing 1').fill(''))
    d += flow.Arrow().down(d.unit/2)
    d += (step2 := flow.Box(w=8, h=2).label('Thing 2').fill(''))
    d += flow.Arrow().down(d.unit/2)
    d += (step3 := flow.Box(w=8, h=2).label('Thing 3').fill(''))
    
    d += flow.Arrow().down(d.unit/2)
    d += (step4 := flow.Box(w=8, h=2).label('Thing 4').fill(''))
    d += flow.Arrow().down(d.unit/2)
    d += (step5 := flow.Box(w=8, h=2).label('Thing 5').fill(''))
    d += flow.Arrow().down(d.unit/2)
    d += (step6 := flow.Box(w=8, h=2).label('Thing 6').fill(''))
    
   
    # Activities
    d += flow.Arrow().right(d.unit/2).at(step1.E)
    d += (act1 := flow.Box(w=8, h=2).anchor('W').label('activity 1').fill(''))
    
    d += flow.Arrow().right(d.unit/2).at(step2.E)
    d += (act2 := flow.Box(w=8, h=2).anchor('W').label('activity 2').fill(''))

    d += flow.Arrow().right(d.unit/2).at(step3.E)
    d += (act3 := flow.Box(w=8, h=2).anchor('W').label('activity 3').fill(''))
 
    d += flow.Arrow().right(d.unit/2).at(step4.E)
    d += (act4 := flow.Box(w=8, h=2).anchor('W').label('activity 4').fill(''))
    
    d += flow.Arrow().right(d.unit/2).at(step5.E)
    d += (act5 := flow.Box(w=8, h=2).anchor('W').label('activity 5').fill(''))

    d += flow.Arrow().right(d.unit/2).at(step6.E)
    d += (act6 := flow.Box(w=8, h=2).anchor('W').label('activity 6').fill(''))
 
    d += (phase1 := elm.EncircleBox([step1, step2, step3, act1, act2, act3], padx=.8).linestyle('--').linewidth(2).color('red'))
    d += (phase2 := elm.EncircleBox([step4, step5, act4, act5], padx=.8).linestyle('--').linewidth(2).color('blue'))
    d += (phase3 := elm.EncircleBox([step6, act6], padx=.8).linestyle('--').linewidth(2).color('green'))

    #d += elm.Label().label('Parallel',loc="top").color('red')

enter image description here

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我为君王 2025-01-28 21:07:27

您可以像其他任何元素一样,将标签添加到环绕盒元素中。但是默认情况下它将显示在框上方,因此您需要指定位置和旋转90度:

d += (phase1 := elm.EncircleBox([step1, step2, step3, act1, act2, act3], padx=2, pady=.5).linestyle('--').linewidth(2).color('red')
         .label('Subtitle 1', loc='left', rotate=90))
d += (phase2 := elm.EncircleBox([step4, step5, act4, act5], padx=2, pady=.5).linestyle('--').linewidth(2).color('blue')
         .label('Subtitle 2', loc='left', rotate=90))
d += (phase3 := elm.EncircleBox([step6, act6], padx=2, pady=.5).linestyle('--').linewidth(2).color('green')
         .label('Subtitle 3', loc='left', rotate=90))

padxpady parameters参数使x中的incirclebox在x中更大和y指示。

You can add labels to the EncircleBox elements, just like any other element. But by default it will appear above the box, so you need to specify the location and a rotation of 90 degrees:

d += (phase1 := elm.EncircleBox([step1, step2, step3, act1, act2, act3], padx=2, pady=.5).linestyle('--').linewidth(2).color('red')
         .label('Subtitle 1', loc='left', rotate=90))
d += (phase2 := elm.EncircleBox([step4, step5, act4, act5], padx=2, pady=.5).linestyle('--').linewidth(2).color('blue')
         .label('Subtitle 2', loc='left', rotate=90))
d += (phase3 := elm.EncircleBox([step6, act6], padx=2, pady=.5).linestyle('--').linewidth(2).color('green')
         .label('Subtitle 3', loc='left', rotate=90))

The padx and pady parameters make the EncircleBoxes bigger in the x and y directions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文