<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.scatter([
{x: 2, y: 21},
{x: 14, y: 24},
{x: 89, y: 23},
{x: 48, y: 18}
]);
chart.lineMarker(0, {value: 22, stroke: "2 #1B5E20"});
chart.lineMarker(1, {value: 19, stroke: "2 #D50000"});
chart.lineMarker(1, false); // disables line marker by index
chart.container("container");
chart.draw();
});