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.column([
4
{x: 'Meat', value: 10},
5
{x: 'Fruit', value: 12},
6
{x: 'Nuts', value: 18},
7
{x: 'Milk', value: 11},
8
{x: 'Fish', value: 9}
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
}