Using InfraNodus, you can download your graph as an image (PNG) or a high-resolution vector (SVG) formats. You can also download JSON data of the graph, as well as GexF (for Gephi), CSV, and plain text.
If you cannot download your file, it may be due to your browser interfering with your downloads. To enable downloads from InfraNodus, go to the address bar of your browser, click Site Settings button there (usually to the right or to the left of the website address), and enable downloads from InfraNodus. This should resolve the issue.
If your SVG downloads still don't work, the reason may be that you're viewing "both @mentions and concepts" at the top panel. Just change that filter to "concepts only" and then you can download the SVG.
You can also download it if you open the browser's console and add the following code that will force download the SVG object which you can then save as a file:
sigma.instances(0).toSVG({
download: true,
filename: userFactory.getCurrentUser() + '_' + userFactory.getCurrentContext() + '_infranodus.svg',
size: 1000,
labels: true,
data: true,
classes: false
});
Comments
0 comments
Please sign in to leave a comment.