anychart.onDocumentReady(function () {
var chart = anychart.line();
var firstSeries = chart.line([7, 15, 3, 10]);
firstSeries.markers(true);
var secondSeries = chart.line([9, 10, 1, 15]);
secondSeries.markers(true);
var firstItem = firstSeries.legendItem();
firstItem.iconMarkerStroke("#000000", 1, "4 2");
chart.container("container");