anychart.onDocumentReady(function () {
var chart = anychart.bar3d();
chart.padding([10, 40, 5, 20]);
chart.title('Top 10 Cosmetic Products by Revenue');
['Eyebrow pencil', 170670],
chart.yAxis().labels().format('${%Value}');
chart.xAxis().title('Products by Revenue');
chart.yAxis().title('Revenue in Dollars');
chart.interactivity().hoverMode('by-x');
chart.yScale().minimum(0);
chart.container('container');