Open
Description
Is there an existing issue for this?
- I have searched the existing issues
Is your feature request related to a problem? Please describe the problem.
The resource graph is made using a d3 force directed graph. Various forces act on nodes (the resources) the cause them to be laid out in a certain way:
aspire/src/Aspire.Dashboard/wwwroot/js/app-resourcegraph.js
Lines 57 to 63 in 9cbf38d
Right now the forces agressively keep resources tightly bunched together, which creates a big blob. There is probably a better layout than the one we have.
Describe the solution you'd like
Two parts to this:
- Think about what a better graph layout would look like. For instance, would it be better if resources with multiple connected elements were spaced further apart?
- Change the forces to achieve the desired design.
Additional context
No response