HTMLcopy
1
<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
anychart.onDocumentReady(function () {
2
var chart = anychart.gauges.circular([{value: 7.5}]);
3
chart.axis();
4
chart.needle();
5
chart.title('Get chart as SVG with predefined paper size and orientation');
6
chart.container('container');
7
chart.draw();
8
9
// Get chart as SVG with parameters.
10
var SVGstring = chart.toSvg('a4', true);
11
// Now you can do something with this string, send it to the server and etc.
12
});