Wordcloud dropping words

by Kesav Telaprolu

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://github.highcharts.com/bugfix/wordcloud-playing-field-and-spiral/modules/wordcloud.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<div id="container"></div>

CSS

#container {
	border: 1px solid red;
	margin: 0 auto;
  width: 200px;
  height: 200px;
}

JavaScript

Highcharts.chart('container', {

		chart: {
      type: "wordcloud"
    },

    series: [{
    		rotation: {
        	from: 0,
          to: 0
        },
        data: [
        	{
          	name: "Collateralised"
          },
          {
          	name: "Senior Unsecured"
          },
          {
          	name: "Subordinated"
          },
          {
          	name: "Supranational"
          }
        ],
    }],
    title: {
        text: null
    }
});