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.line([1.1, 1.4, 1.2, 1.6]);
3
chart.title("Get chart as SVG with predefined width and height.");
4
chart.container("container");
5
chart.draw();
6
7
// Gets chart as SVG with parameters.
8
var SVGstring = chart.toSvg(300, 400);
9
// Now you can do anything with this string, send to server or else.
10
});