jrtechs 2b6228fe59 | 6 years ago | |
---|---|---|
.. | ||
README.md | 6 years ago | |
sigma.renderers.snapshot.js | 6 years ago |
Plugin by Guillaume Plique.
This plugin makes the retrieval of an image version of the graph rendered with canvas or webgl as easy as a stroll in a park.
Basic usage
// Retrieving a dataUrl of the rendered graph
var dataUrl = myRenderer.snapshot();
// Download the rendered graph as an image
myRenderer.snapshot({download: true});
Complex usage
myRenderer.snapshot({
format: 'jpg',
background: 'white',
labels: false
});
Parameters
png
]: file format of the image. Supported: png
, jpg
, gif
, tiff
.true
] : do we want the labels on screen to be displayed on the snapshot?false
] : whether you want the graph image to be downloaded by the browser.graph.png
] : full filename for the file to download.