How do I layout the edges clearly?









up vote
0
down vote

favorite












The image shown looks cluttered even though I have changed the rank to LR. This is generated by a tool and I have to modify it myself.



This answer has a possible solution. I understand that if I am able to assign numbers to the nodes I can use the solution.



Am I right ? I will be able to modify this large dot file using Java code.



I have tried this.



overlap=scale ;
splines=true;


Are there other solutions I should investigate ?



I have copied part of the file here.



digraph "cxf-api-2.1.3.jar" {
// Path: cxf-api-2.1.3.jar
"org.apache.cxf" -> "java.io (java.base)";
"org.apache.cxf" -> "java.lang (java.base)";
"org.apache.cxf" -> "java.lang.reflect (java.base)";
"org.apache.cxf" -> "java.util (java.base)";
"org.apache.cxf" -> "java.util.logging (java.logging)";
"org.apache.cxf" -> "org.apache.cxf (cxf-api-2.1.3.jar)";


enter image description here










share|improve this question























  • You might consider a different layout engine like neato, twopi, or fdp instead of dot. Dot graphs tend to get cluttered when you too many N-to-1 or 1-to-N relationships where N > 5.
    – tk421
    Nov 15 at 23:14














up vote
0
down vote

favorite












The image shown looks cluttered even though I have changed the rank to LR. This is generated by a tool and I have to modify it myself.



This answer has a possible solution. I understand that if I am able to assign numbers to the nodes I can use the solution.



Am I right ? I will be able to modify this large dot file using Java code.



I have tried this.



overlap=scale ;
splines=true;


Are there other solutions I should investigate ?



I have copied part of the file here.



digraph "cxf-api-2.1.3.jar" {
// Path: cxf-api-2.1.3.jar
"org.apache.cxf" -> "java.io (java.base)";
"org.apache.cxf" -> "java.lang (java.base)";
"org.apache.cxf" -> "java.lang.reflect (java.base)";
"org.apache.cxf" -> "java.util (java.base)";
"org.apache.cxf" -> "java.util.logging (java.logging)";
"org.apache.cxf" -> "org.apache.cxf (cxf-api-2.1.3.jar)";


enter image description here










share|improve this question























  • You might consider a different layout engine like neato, twopi, or fdp instead of dot. Dot graphs tend to get cluttered when you too many N-to-1 or 1-to-N relationships where N > 5.
    – tk421
    Nov 15 at 23:14












up vote
0
down vote

favorite









up vote
0
down vote

favorite











The image shown looks cluttered even though I have changed the rank to LR. This is generated by a tool and I have to modify it myself.



This answer has a possible solution. I understand that if I am able to assign numbers to the nodes I can use the solution.



Am I right ? I will be able to modify this large dot file using Java code.



I have tried this.



overlap=scale ;
splines=true;


Are there other solutions I should investigate ?



I have copied part of the file here.



digraph "cxf-api-2.1.3.jar" {
// Path: cxf-api-2.1.3.jar
"org.apache.cxf" -> "java.io (java.base)";
"org.apache.cxf" -> "java.lang (java.base)";
"org.apache.cxf" -> "java.lang.reflect (java.base)";
"org.apache.cxf" -> "java.util (java.base)";
"org.apache.cxf" -> "java.util.logging (java.logging)";
"org.apache.cxf" -> "org.apache.cxf (cxf-api-2.1.3.jar)";


enter image description here










share|improve this question















The image shown looks cluttered even though I have changed the rank to LR. This is generated by a tool and I have to modify it myself.



This answer has a possible solution. I understand that if I am able to assign numbers to the nodes I can use the solution.



Am I right ? I will be able to modify this large dot file using Java code.



I have tried this.



overlap=scale ;
splines=true;


Are there other solutions I should investigate ?



I have copied part of the file here.



digraph "cxf-api-2.1.3.jar" {
// Path: cxf-api-2.1.3.jar
"org.apache.cxf" -> "java.io (java.base)";
"org.apache.cxf" -> "java.lang (java.base)";
"org.apache.cxf" -> "java.lang.reflect (java.base)";
"org.apache.cxf" -> "java.util (java.base)";
"org.apache.cxf" -> "java.util.logging (java.logging)";
"org.apache.cxf" -> "org.apache.cxf (cxf-api-2.1.3.jar)";


enter image description here







graphviz overlap dot edge






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 11 at 15:32

























asked Nov 11 at 14:44









Mohan Radhakrishnan

1,19531023




1,19531023











  • You might consider a different layout engine like neato, twopi, or fdp instead of dot. Dot graphs tend to get cluttered when you too many N-to-1 or 1-to-N relationships where N > 5.
    – tk421
    Nov 15 at 23:14
















  • You might consider a different layout engine like neato, twopi, or fdp instead of dot. Dot graphs tend to get cluttered when you too many N-to-1 or 1-to-N relationships where N > 5.
    – tk421
    Nov 15 at 23:14















You might consider a different layout engine like neato, twopi, or fdp instead of dot. Dot graphs tend to get cluttered when you too many N-to-1 or 1-to-N relationships where N > 5.
– tk421
Nov 15 at 23:14




You might consider a different layout engine like neato, twopi, or fdp instead of dot. Dot graphs tend to get cluttered when you too many N-to-1 or 1-to-N relationships where N > 5.
– tk421
Nov 15 at 23:14












1 Answer
1






active

oldest

votes

















up vote
0
down vote



accepted










Using rankdir=LR only changed the graph from horizontal to vertical layout, which didn't help much in your case. The helping trick in the answer you mentioned, was that you pick a few items and group them together on same line :



rank = same; sample1 sample10 sample20



...and you use real names, same as elsewhere in your graph. You have to experiment, but the idea was to choose items which are far enough from each others, so that wrapping actually makes the new graph more readable.



One more thing: you have limited choice in grouping items. The full list of ranking options is "same", "min", "source", "max", "sink", but I've had limited success only with rank=same and rank=sink.






share|improve this answer




















  • I will experiment with the idea and come back in a while.
    – Mohan Radhakrishnan
    Nov 26 at 9:00










  • The syntax you suggest works but I have to experiment.. "java.lang (java.base)" ->"org.apache.cxf.common.i18n (not found)" [ style = invis ]; This is accepted too.
    – Mohan Radhakrishnan
    Nov 27 at 10:41











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53249820%2fhow-do-i-layout-the-edges-clearly%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote



accepted










Using rankdir=LR only changed the graph from horizontal to vertical layout, which didn't help much in your case. The helping trick in the answer you mentioned, was that you pick a few items and group them together on same line :



rank = same; sample1 sample10 sample20



...and you use real names, same as elsewhere in your graph. You have to experiment, but the idea was to choose items which are far enough from each others, so that wrapping actually makes the new graph more readable.



One more thing: you have limited choice in grouping items. The full list of ranking options is "same", "min", "source", "max", "sink", but I've had limited success only with rank=same and rank=sink.






share|improve this answer




















  • I will experiment with the idea and come back in a while.
    – Mohan Radhakrishnan
    Nov 26 at 9:00










  • The syntax you suggest works but I have to experiment.. "java.lang (java.base)" ->"org.apache.cxf.common.i18n (not found)" [ style = invis ]; This is accepted too.
    – Mohan Radhakrishnan
    Nov 27 at 10:41















up vote
0
down vote



accepted










Using rankdir=LR only changed the graph from horizontal to vertical layout, which didn't help much in your case. The helping trick in the answer you mentioned, was that you pick a few items and group them together on same line :



rank = same; sample1 sample10 sample20



...and you use real names, same as elsewhere in your graph. You have to experiment, but the idea was to choose items which are far enough from each others, so that wrapping actually makes the new graph more readable.



One more thing: you have limited choice in grouping items. The full list of ranking options is "same", "min", "source", "max", "sink", but I've had limited success only with rank=same and rank=sink.






share|improve this answer




















  • I will experiment with the idea and come back in a while.
    – Mohan Radhakrishnan
    Nov 26 at 9:00










  • The syntax you suggest works but I have to experiment.. "java.lang (java.base)" ->"org.apache.cxf.common.i18n (not found)" [ style = invis ]; This is accepted too.
    – Mohan Radhakrishnan
    Nov 27 at 10:41













up vote
0
down vote



accepted







up vote
0
down vote



accepted






Using rankdir=LR only changed the graph from horizontal to vertical layout, which didn't help much in your case. The helping trick in the answer you mentioned, was that you pick a few items and group them together on same line :



rank = same; sample1 sample10 sample20



...and you use real names, same as elsewhere in your graph. You have to experiment, but the idea was to choose items which are far enough from each others, so that wrapping actually makes the new graph more readable.



One more thing: you have limited choice in grouping items. The full list of ranking options is "same", "min", "source", "max", "sink", but I've had limited success only with rank=same and rank=sink.






share|improve this answer












Using rankdir=LR only changed the graph from horizontal to vertical layout, which didn't help much in your case. The helping trick in the answer you mentioned, was that you pick a few items and group them together on same line :



rank = same; sample1 sample10 sample20



...and you use real names, same as elsewhere in your graph. You have to experiment, but the idea was to choose items which are far enough from each others, so that wrapping actually makes the new graph more readable.



One more thing: you have limited choice in grouping items. The full list of ranking options is "same", "min", "source", "max", "sink", but I've had limited success only with rank=same and rank=sink.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 26 at 8:36









JOM

6,231567107




6,231567107











  • I will experiment with the idea and come back in a while.
    – Mohan Radhakrishnan
    Nov 26 at 9:00










  • The syntax you suggest works but I have to experiment.. "java.lang (java.base)" ->"org.apache.cxf.common.i18n (not found)" [ style = invis ]; This is accepted too.
    – Mohan Radhakrishnan
    Nov 27 at 10:41

















  • I will experiment with the idea and come back in a while.
    – Mohan Radhakrishnan
    Nov 26 at 9:00










  • The syntax you suggest works but I have to experiment.. "java.lang (java.base)" ->"org.apache.cxf.common.i18n (not found)" [ style = invis ]; This is accepted too.
    – Mohan Radhakrishnan
    Nov 27 at 10:41
















I will experiment with the idea and come back in a while.
– Mohan Radhakrishnan
Nov 26 at 9:00




I will experiment with the idea and come back in a while.
– Mohan Radhakrishnan
Nov 26 at 9:00












The syntax you suggest works but I have to experiment.. "java.lang (java.base)" ->"org.apache.cxf.common.i18n (not found)" [ style = invis ]; This is accepted too.
– Mohan Radhakrishnan
Nov 27 at 10:41





The syntax you suggest works but I have to experiment.. "java.lang (java.base)" ->"org.apache.cxf.common.i18n (not found)" [ style = invis ]; This is accepted too.
– Mohan Radhakrishnan
Nov 27 at 10:41


















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53249820%2fhow-do-i-layout-the-edges-clearly%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Top Tejano songwriter Luis Silva dead of heart attack at 64

ReactJS Fetched API data displays live - need Data displayed static

政党