We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Capturing the entire chart like this http://jsfiddle.net/hasantayyar/AqAE2/2/ will be a cool function.
The text was updated successfully, but these errors were encountered:
You can try this on document view page. Easy to implement
$.getScript("https://rawgit.com/niklasvh/html2canvas/master/build/html2canvas.min.js");
then
$("#entities").css("height",$(window).height()) html2canvas( document.getElementById("entities") , { onrendered: function(canvas) { var can = canvas; var img = new Image(); img.src = can.toDataURL(); var url = img.src.replace(/^data:image\/[^;]/, 'data:application/octet-stream'); window.location = url; } });
Sorry, something went wrong.
No branches or pull requests
Capturing the entire chart like this http://jsfiddle.net/hasantayyar/AqAE2/2/ will be a cool function.
The text was updated successfully, but these errors were encountered: