anychart.onDocumentReady(function () {
var chart = anychart.column3d();
chart.title('Top 10 Cosmetic Products by Revenue');
['Nail polish', '143760'],
['Eyebrow pencil', '170670'],
chart.yScale().minimum(0);
chart.yAxis().labels().format('{%Value}{groupsSeparator: }');
chart.tooltip().positionMode('point');
chart.interactivity().hoverMode('by-x');
chart.xAxis().title('Products by Revenue');
chart.yAxis().title('Revenue in Dollars');
chart.container('container');