anychart.onDocumentReady(function () {
var chart = anychart.line([6, 10, 18, 11, 9]);
chart.yScale().minimum(0);
var controller = chart.annotations();
var annotation = controller.ellipse();
annotation.valueAnchor(17);
annotation.secondXAnchor(2.1);
annotation.secondValueAnchor(19);
annotation.markers(true);
annotation.selectMarkers("star5");
chart.title("Set select markers parameter as a string.");
chart.container("container");