I have this D3js line graph I'm working with.
I'd like to be able to save it as an image in the same directory as shown in this example
d3.select('#saveButton').on('click', function(){
var svgString = getSVGString(svg.node());
svgString2Image( svgString, 2*width, 2*height, 'png', save ); // passes Blob and filesize String to the callback
function save( dataBlob, filesize ){
saveAs( dataBlob, 'D3 vis exported to PNG.png' ); // FileSaver.js
function
}
});
no errors running the above
Although I am getting no errors, the file is not downloading when the button is clicked. What am I missing here? Thanks!
In your fiddle, you're appending
g
to yoursvg
and assigning it your variablesvg
:It looks like
getSVGString()
expects the root node, and not ag
element. You should probably change your code so thatsvg
reflects the root svg element, and create another variable to store theg
element, but for a quick and dirty fix, you can changeto
And should save. Updated fiddle: https://jsfiddle.net/c19664p3/8/
Edit: As for exported styles, it looks like you can't refer to selectors outside of the svg when declaring selecting. Additionally it looks like it has to consist of exactly just an id or a class. See my other answer for a more lax CSS rule exporter.
So changing this:
to:
exports the line style for just the svg. Updated fiddle: https://jsfiddle.net/c19664p3/10/