HTMLcopy
1
<button onclick="saveAsSvg();">Save 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.gauges.linear([300, 250, 150]);
4
chart.addPointer(0, 1, 2);
5
chart.title('Save chart as SVG file with paper size and landscape orientation set');
6
chart.container('container');
7
chart.draw();
8
});
9
10
function saveAsSvg() {
11
12
// Save chart as SVG file
13
chart.saveAsSvg('a5', true);
14
}