文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
6.2 节点
6.2.1 默认节点
默认节点用 id
表示,如:
~~~mermaid
graph LR
id1
~~~
的图形为:
~~~mermaid
graph LR
id1
~~~
6.2.2 带文本的节点
可以设置节点方框中的文本替代默认的 id
名字,如:
~~~mermaid
graph LR
id1[This is the text in the box]
~~~
的图形为:
~~~mermaid
graph LR
id1[This is the text in the box]
~~~
id
与[
之间必须没有空隔
你可以对某个 id
的方框多次设置文本,以最近一次设置的文本为主,如:
~~~mermaid
graph LR
id1[This is the text in the box]
id1[This is the text in the box2]
~~~
的图形为:
~~~mermaid
graph LR
id1[This is the text in the box]
id1[This is the text in the box2]
~~~
6.2.3 圆角节点
默认的节点是矩形框,你可以通过 id( )
设置成圆角节点,如:
~~~mermaid
graph LR
id1(This is the text in the box)
~~~
的图形为:
~~~mermaid
graph LR
id1(This is the text in the box)
~~~
id
与(
之间必须没有空隔
6.2.4 圆形节点
默认的节点是矩形框,你可以通过 id(( ))
设置成圆形节点,如:
~~~mermaid
graph LR
id1((This is the text in the circle))
~~~
的图形为:
~~~mermaid
graph LR
id1(This is the text in the box)
~~~
id
与((
之间必须没有空隔
6.2.5 非对称节点
默认的节点是矩形框,你可以通过 id> ]
设置成非对称节点,如:
~~~mermaid
graph LR
id1>This is the text in the box]
~~~
的图形为:
~~~mermaid
graph LR
id1((This is the text in the circle))
~~~
id
与>
之间必须没有空隔
6.2.6 菱形节点
默认的节点是矩形框,你可以通过 id{ }
设置成菱形节点,如:
~~~mermaid
graph LR
id1{This is the text in the box}
~~~
的图形为:
~~~mermaid
graph LR
id1>This is the text in the box]
~~~
id
与 {
之间必须没有空隔
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论