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.sparkline([5, 50, 10, 60, 20, 70, 30]);
3
4
// Set stroke.
5
chart.stroke("#FFA500", 3, "5 2");
6
7
chart.title({text: "Set stroke parameters", orientation: "top"});
8
chart.container("container");
9
chart.draw();
10
});