HTMLcopy
1
<button onclick="shareAsJpg();">Get the link to JPG image</button>
2
<div id="container"></div>
CSScopy
9
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
7
button {
8
margin: 10px 0 0 10px;
9
}
JavaScriptcopy
x
1
var chart;
2
anychart.onDocumentReady(function () {
3
chart = anychart.line([
4
{x: 'January', value: 2},
5
{x: 'February', value: 5},
6
{x: 'March', value: 3},
7
{x: 'April', value: 9},
8
{x: 'May', value: 4}
9
]);
10
chart.title('Share chart as JPG image');
11
chart.width('100%').height('95%');
12
chart.container('container');
13
chart.draw();
14
});
15
16
function shareAsJpg() {
17
18
// Share chart as JPG image.
19
chart.shareAsJpg(function (response) {
20
alert(response);
21
});
22
}