## Example

```js  
// Team, Current Sales, Sales Quota
var data = [
  ['North', 70, 100],
  ['South', 36, 100],
  ['East', 51, 100],
  ['West', 18, 100]
];

var HorizontalStacked = {
  chartName: 'HorizontalStacked',
  orientation: 'horizontal',
  width: 400,
  height: 100,
  isStackedGauge: true,
  manualColor: false,
};
var VerticalStacked = {
  chartName: 'VerticalStacked',
  orientation: 'vertical',
  width: 100,
  height: 400,
  isStackedGauge: true,
  manualColor: false,
};
var HorizontalSingle = {
  chartName: 'HorizontalSingle',
  orientation: 'horizontal',
  width: 400,
  height: 100,
  isStackedGauge: false,
  manualColor: true,
};
var VerticalSingle = {
  chartName: 'VerticalSingle',
  orientation: 'vertical',
  width: 100,
  height: 400,
  isStackedGauge: false,
  manualColor: true,
};

//Initialze the widget
var chart = d3.select('#vis')
  .append('svg')
  .attr('height', '500')
  .attr('width', '500')
  .append('g')
  .attr('transform', 'translate(200,50)')
  // .attr('transform', 'translate(35,200)')
  .chart('StackedBarGauge')
  // .c(HorizontalStacked);
  // .c(VerticalStacked);
  // .c(HorizontalSingle);
  .c(VerticalSingle);

chart._notifier.showMessage(true);

//Render the chart with data here
chart.draw(data);

```

