anychart.onDocumentReady(function () {
var chart = anychart.polar();
{ x: 'Jan', high: 5.8, low: 7.9 },
{ x: 'Feb', high: 4.6, low: 6.1 },
{ x: 'Mar', high: 5.9, low: 8.1 },
{ x: 'Apr', high: 7.8, low: 10.7 },
{ x: 'May', high: 10.5, low: 13.7 },
{ x: 'Jun', high: 13.8, low: 17 },
{ x: 'Jul', high: 16.5, low: 18.5 },
{ x: 'Aug', high: 17.8, low: 19 },
{ x: 'Sep', high: 15.4, low: 17.8 },
{ x: 'Oct', high: 12.7, low: 15.3 },
{ x: 'Nov', high: 9.8, low: 13 },
{ x: 'Dec', high: 9, low: 8.2 }
.text('Average max and min Temperatures in (\xb0C)')
.padding({ bottom: 20 });
chart.container('container');