-
Notifications
You must be signed in to change notification settings - Fork 118
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
SVG container #32
Comments
Hello @gaitat. Thanks for the feedback. By curiosity I would like to understand why you need circos to share the svg with something else. Can you explain? It is a bit tricky to solve. Here is the part of the code dealing with containers: https://github.com/nicgirault/circosJS/blob/master/src/circos.js#L30-L32 Could you propose a pull request? I guess you could handle two cases:
Let me know if I can help you |
My issue is the div that you place above the created svg for the circos plot. Since my structure is of the form:
That |
I removed this line from the code and it works fine (for my case)
|
A quick search reveals that I would also like to embed circos plots inside circular graph nodes... |
Hmm, is this still an issue? If I use the code at https://cdn.rawgit.com/nicgirault/circosJS/v2/dist/circos.js, then I don't get a If I run the code posted in #40 (comment), then I do not get an extra div element? |
Yes, this is still an issue. I was able to solve it by doing the same thing as @gaitat. @nicgirault Right now I am using a forked version of circosJS that removes the I should note that I am using circosJS in a React app, and this small code change made a world of a difference. |
Hi,
Great project,
In my project I need to have the svg created in my code vs. in the circosJS;
Is there a way that I can bybass the creation of the svg in circosJS and append the created elements in an #id?
Thanks
The text was updated successfully, but these errors were encountered: