Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/amazon-s3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Plot 更改字体大小图表美人鱼_Plot_Sequence Diagram_Diagrammer - Fatal编程技术网

Plot 更改字体大小图表美人鱼

Plot 更改字体大小图表美人鱼,plot,sequence-diagram,diagrammer,Plot,Sequence Diagram,Diagrammer,我正在尝试使用mermaid构建流程图,我一直在尝试更改节点和箭头中的字体大小,但我没有找到与此相关的信息 提前感谢您提供的任何可能的帮助 请在下面查找代码 library(DiagrammeR) mermaid(" graph LR; A((Or))--0.31-->B((AC)) A((Or))--0.07-->C((qui)) A((Or))--0.31--&g

我正在尝试使用mermaid构建流程图,我一直在尝试更改节点和箭头中的字体大小,但我没有找到与此相关的信息

提前感谢您提供的任何可能的帮助

请在下面查找代码

      library(DiagrammeR)

      mermaid("          
      graph LR;
      
      A((Or))--0.31-->B((AC))
      A((Or))--0.07-->C((qui))
      A((Or))--0.31-->D((ACS))
      A((Or))--0.31-->E((ASS))
      B((AC))--0.33-->C((qui))
      B((AC))--0.50-->D((ACS))
      B((AC))--0.16-->E((ASS))
      C((qui))--0.50-->B((AC))
      C((qui))--0.16-->D((ACS))
      C((qui))--0.33-->E((ASS))
      D((ACS))--0.08-->B((AC))
      E((ACS))--0.92-->F((Cons))
      D((ASS))--0.88-->F((Cons))
      D((ASS))--0.11-->C((qui))         
      style A fill:fff,stroke:#333,stroke-width:4px
      style B fill:fff,stroke:#333,stroke-width:4px
      style C fill:fff,stroke:#333,stroke-width:4px
      style D fill:fff,stroke:#333,stroke-width:4px
      style E fill:fff,stroke:#333,stroke-width:4px
      style F fill:fff,stroke:#333,stroke-width:4px
      linkStyle 0 stroke-width:3.1px,fill:none,stroke:black;
      linkStyle 1 stroke-width:0.7px,fill:none,stroke:black;
      linkStyle 2 stroke-width:3.1px,fill:none,stroke:black;
      linkStyle 3 stroke-width:3.1px,fill:none,stroke:black;
      linkStyle 4 stroke-width:3.3px,fill:none,stroke:black;
      linkStyle 5 stroke-width:5px,fill:none,stroke:black,stroke-dasharray:3;
      linkStyle 6 stroke-width:1.6px,fill:none,stroke:black;
      linkStyle 7 stroke-width:5px,fill:none,stroke:black;          
      linkStyle 8 stroke-width:1.6px,fill:none,stroke:black;
      linkStyle 9 stroke-width:3.3px,fill:none,stroke:black,stroke-dasharray:3;
      linkStyle 10 stroke-width:0.8px,fill:none,stroke:black;
      linkStyle 11 stroke-width:9.2px,fill:none,stroke:black;
      linkStyle 12 stroke-width:8.8px,fill:none,stroke:black;
      linkStyle 13 stroke-width:1.1px,fill:none,stroke:black,stroke-dasharray:3;          
      ")