Graphviz 图中阴影

Graphviz 图中阴影,graphviz,dot,Graphviz,Dot,我想在plantuml MVC图中绘制,但阴影并不像我想的那样工作 @startuml digraph G { node[shape=box, style=rounded, shadow_offset=7, shadow_blur=5];Model;View;Controller View -> Model Controller -> View Controller -> Model } @enduml 我想画画 你必须解释阴影为什么不是你想要的。你从

我想在plantuml MVC图中绘制,但阴影并不像我想的那样工作

@startuml
digraph G {
node[shape=box, style=rounded, shadow_offset=7, shadow_blur=5];Model;View;Controller
    View -> Model
    Controller -> View
    Controller -> Model
}
@enduml
我想画画

你必须解释阴影为什么不是你想要的。你从哪里知道节点有可用的
shadow\u offset
shadow\u blur
属性?我在Graphviz文档中找不到类似的东西。我在这里找到的,但在这里我找不到任何与shadow有关的东西,你说得对