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.linear([300, 250, 150]);
3
chart.addPointer(0, 1, 2);
4
chart.title('Get chart as SVG with predefined width and height');
5
chart.container('container');
6
chart.draw();
7
8
// Get chart as SVG with parameters.
9
var SVGstring = chart.toSvg(300, 400);
10
// Now you can do something with this string, send it to the server and etc.
11
});