返回介绍

6.3 节点的边

发布于 2023-07-19 23:34:37 字数 5364 浏览 0 评论 0 收藏 0

边有多种形式,同时也可以设置边的文字

6.3.1 实线边

6.3.1.1 带箭头无文字的实线边

带箭头无文字的实线边语法为:

~~~mermaid
graph LR
A-->B
~~~

的图形为:

~~~mermaid
graph LR
A-->B
~~~

可以用 graph LR ,也可以用 graph LR;

6.3.1.2 不带箭头和文字的实线边

不带箭头和文字的实线边语法为:

~~~mermaid
graph LR
A---B
~~~

的图形为:

~~~mermaid
graph LR
A---B
~~~

可以用 graph LR ,也可以用 graph LR;

6.3.1.3 带箭头有文字的实线边

带箭头和文字的实线边可以有两种语法,其中

~~~mermaid
graph LR;
A-- text -->B
~~~

的图形为:

~~~mermaid
graph LR;
A-- text -->B
~~~

可以用 graph LR ,也可以用 graph LR;

另一种形式:

~~~mermaid
graph LR
A-->|This is the text|B
~~~

的图形为:

~~~mermaid
graph LR
A-->|This is the text|B
~~~

可以用 graph LR ,也可以用 graph LR;

6.3.1.4 有文字无箭头的实线边

有文字无箭头的实线边可以有两种语法,其中

~~~mermaid
graph LR
A-- This is the text --- B
~~~

的图形为:

~~~mermaid
graph LR
A-- This is the text --- B
~~~

注意 A 后面跟的是两横 --B 前面是三横 ---

可以用 graph LR ,也可以用 graph LR;

另一种形式:

~~~mermaid
graph LR;
A---|This is the text|B
~~~

的图形为:

~~~mermaid
graph LR;
A---|This is the text|B
~~~

注意 A 后面跟的是三横一竖 ---|B 前面是一竖 |

可以用 graph LR ,也可以用 graph LR;

6.3.2 虚线边

6.3.2.1 带箭头不带文字

带箭头无文字虚线边语法为

~~~mermaid
graph LR
A-.->B
~~~

的图形为:

~~~mermaid
graph LR
A-.->B
~~~

可以用 graph LR ,也可以用 graph LR;

6.3.2.2 不带箭头和文字

不带箭头和文字虚线边语法为

~~~mermaid
graph LR
A-.-B
~~~

的图形为:

~~~mermaid
graph LR
A-.-B
~~~

可以用 graph LR ,也可以用 graph LR;

6.3.2.3 带箭头和文字

带箭头和文字虚线边语法为

~~~mermaid
graph LR
A-. This is the text .->B
~~~

的图形为:

~~~mermaid
graph LR
A-. This is the text .->B
~~~

可以用 graph LR ,也可以用 graph LR;

6.3.2.4 带文字不带箭头

带文字不带箭头虚线边语法为

~~~mermaid
graph LR
A-. This is the text .-B
~~~

的图形为:

~~~mermaid
graph LR
A-. This is the text .-B
~~~

可以用 graph LR ,也可以用 graph LR;

6.3.3 粗实线边

6.3.3.1 带箭头无文字

带箭头无文字的粗实线边语法为:

~~~mermaid
graph LR
A==>B
~~~

的图形为:

~~~mermaid
graph LR
A==>B
~~~

可以用 graph LR ,也可以用 graph LR;

6.3.3.2 不带箭头和文字

不带箭头和文字的粗实线边语法为:

~~~mermaid
graph LR
A===B
~~~

的图形为:

~~~mermaid
graph LR
A===B
~~~

可以用 graph LR ,也可以用 graph LR;

6.3.3.3 带箭头有文字

带箭头和文字的粗实线边可以有两种语法,其中

~~~mermaid
graph LR;
A== This is the text ==>B
~~~

的图形为:

~~~mermaid
graph LR;
A== This is the text ==>B
~~~

可以用 graph LR ,也可以用 graph LR;

另一种形式:

~~~mermaid
graph LR
A==>|This is the text|B
~~~

的图形为:

~~~mermaid
graph LR
A==>|This is the text|B
~~~

可以用 graph LR ,也可以用 graph LR;

6.3.3.4 有文字无箭头

有文字无箭头的粗实线边可以有两种语法,其中

~~~mermaid
graph LR
A== This is the text === B
~~~

的图形为:

~~~mermaid
graph LR
A== This is the text === B
~~~

注意 A 后面跟的是两个等号 ==B 前面是三个等号 ===

可以用 graph LR ,也可以用 graph LR;

另一种形式:

~~~mermaid
graph LR;
A===|This is the text|B
~~~

的图形为:

~~~mermaid
graph LR;
A===|This is the text|B
~~~

注意 A 后面跟的是三个等号一竖 ===|B 前面是一竖 |

可以用 graph LR ,也可以用 graph LR;

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文