anychart.onDocumentReady(function () {
var dataSet = anychart.data.set([
var view = dataSet.mapAs();
var sortedView = view.sort('value', 'desc');
var chart = anychart.line(sortedView);
chart.title('Sorts the data by descending');
chart.container('container');