|
|
|
|
|
by GrinningFool
192 days ago
|
|
The animations don't seem to be retained across nodes, which seems to make the animations pretty noise more than a means to convey useful information. For example in this simplified chart: flowchart LR
subgraph Inputs
A
B
end
subgraph Middleware
M
end
subgraph Outputs
X
Y
end
A --> M
B --> M
M --> X
M --> Y
G --> L
end
```The input animation colors are pink and green, but the next step (M->output) is blue and orange. I'd expect to see actual flow of usage/data (and if it included diagram syntax to specify message rates, etc that would be even better). So if there's a blue dot on the input side, I should be able to track that on the output side to its final destination. |
|