anychart.onDocumentReady(function () {
var chart = anychart.line();
var firstSeries = chart.line([7, 15, 3, 10]);
chart.line([9, 10, 1, 15]);
firstSeries.legendItem({text: "First series"});
var firstItem = firstSeries.legendItem();
var text = firstItem.text();
chart.title("Get legend items text - " + text);
chart.container("container");