## Example

```js  
//Setup some fake data
var data = [
  ['hvala', 900000],
  ['Silicon Slopes', 5010000],
  ['Acrobat', 1000000],
  ['Eskerrik asko', 500000],
  ['Fireworks', 800000],
  ['Draper', 550000],
  ['Wedding', 600000],
  ['yammer', 700000],
  ['iMovie', 440000],
  ['GarageBand', 480000],
  ['Gandalf', 570000],
  ['July 24', 420000],
  ['Magic Mouse', 850000],
  ['Trackpad', 900000],
  ['Pinterest', 1000000],
  ['Linkedin', 400000],
  ['AOSP', 100],
  ['DOMO', 7500000],
  ['Australia', 500]
];

var data3 = [
  ['Justin McMurdie', 500000],
  ['James Stewart', 800000],
  ['Lance Wright', 550000],
  ['Nick Randall', 600000],
  ['Chris Morgan', 700000],
  ['Austin Kim', 440000]
];

var aHeight = 500;
var aWidth = 500;

//Initialze the widget
var chart = d3.select('#vis')
  .append('svg')
  .attr({
    height: 600 + 'px',
    width: 600 + 'px'
  })
  .append('g')
  .chart('WordCloud')
  .c({
    width: aWidth,
    height: aHeight
  });

//Render the chart with data
chart._notifier.showMessage(true);

//chart.draw(data3);
chart.draw(data);

/*----------------------------------------------------------------------------------
Testing fun
----------------------------------------------------------------------------------*/
//setTimeout(function() {
//     chart.draw(data3)
//}, 10000)
//
//setTimeout(function() {
//     chart.draw(data)
//}, 15000)


```

