Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Network nodes are not exact circle #634

Open
vishrantgupta opened this issue Feb 26, 2018 · 2 comments
Open

Network nodes are not exact circle #634

vishrantgupta opened this issue Feb 26, 2018 · 2 comments

Comments

@vishrantgupta
Copy link

I am using following code to display a network:

var visualization = d3plus.viz()
	.container("#viz")
	.type("network")
	.data(graph.nodes)
	.edges(graph.edges)
	.edges({"arrows": true})
	.size("score")
	.legend({"data" : false, "value" : false })
	.color("#e8ff1f")
	.id("name")
	.draw();

    <body>
        <!-- create container element for visualization -->
        <div id="viz"></div>

    </body>

But the nodes are not circled exactly as it can be seen in the snapshot below:

image

@davelandry
Copy link
Member

@vishrantgupta in order to help us troubleshoot, please provide the following:

  1. internet browser and version
  2. operating system and version
  3. a JSFiddle reproducing the error

@vishrantgupta
Copy link
Author

@davelandry I am using this with JavaFX Webview in windows 7 operating system. JSFiddle and my application differ in the sense that my application is a desktop application and JSFiddle would be a browser-based application.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants