anychart.onDocumentReady(function () {
var chart = anychart.area();
chart.title("Limit the number of symbols in the Axes Labels");
var yScale = chart.yScale();
var yTicks = chart.yScale().ticks();
var yLabels = chart.yAxis(0).labels();
yLabels.format("${%value}{groupsSeparator: }");
var yAxis = chart.yAxis(0);
yAxis.title("Revenue in US Dollars");
var yAxsi1 = chart.yAxis(1);
yAxsi1.orientation("right");
yAxsi1.title("Revenue in Euros");
var yLabels1 = chart.yAxis(1).labels();
yLabels1.format(function() {
value = Math.round(value*0.7094716);
var xAxis = chart.xAxis();
chart.xAxis().labels().format(function() {
value = value.substr(0, 3);
chart.container("container");