anychart.onDocumentReady(function () {
var chart = anychart.polar();
title: 'Most Listened to Genres: Depressive vs Non-Depressive',
header: ['#', 'Non-Depressive', 'Depressive'],
['electronic', .55, .45],
['hip hop/rap', .72, .28],
chart.sortPointsByX(true)
.defaultSeriesType('column')
chart.title().margin().bottom(20);
chart.yScale().stackMode('percent');
chart.container('container');