HTMLcopy
1
<button onclick="shareAsSvg();">Get the link to SVG image</button>
2
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
var chart;
2
anychart.onDocumentReady(function () {
3
chart = anychart.sparkline([1.3, 2, 1.4, 4, 2.3, 6]);
4
chart.title({text: 'Share chart as SVG image', orientation: 'top'});
5
chart.container('container');
6
chart.draw();
7
});
8
9
function shareAsSvg() {
10
11
// Share chart as SVG image
12
chart.shareAsSvg(function (response) {
13
alert(response);
14
});
15
}