anychart.onDocumentReady(function () {
var chart = anychart.scatter();
chart.line([1, 2, 3, 4]);
chart.line([2, 3, 4, 1]);
chart.line([3, 4, 1, 2]);
chart.line([4, 1, 2, 3]);
chart.palette(anychart.palettes.sea);
chart.title("Set series color palette from theme.");
chart.container("container");