<button onclick="shareAsJpg();">Get the link to JPG image</button>
<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
var chart;
anychart.onDocumentReady(function () {
chart = anychart.gauges.circular([{value: 7.5}]);
chart.axis();
chart.needle();
chart.title('Share chart as JPG image');
chart.container('container');
chart.draw();
});
function shareAsJpg() {
// Share chart as JPG image.
chart.shareAsJpg(function (response) {
alert(response);