anychart.onDocumentReady(function () {
var dataSet = anychart.data.set([
var firstSeriesData = dataSet.mapAs({x: [0], value: [1]});
var secondSeriesData = dataSet.mapAs({x: [0], value: [2]});
var thirdSeriesData = dataSet.mapAs({x: [0], value: [3]});
var chart = anychart.line();
var blueSeries = chart.line(firstSeriesData);
chart.line(secondSeriesData);
chart.line(thirdSeriesData);
var a11y = blueSeries.a11y();
a11y.titleFormat("Custom title text.");
chart.title("Set title text for the series.");
chart.container("container");