<div ng-controller="ExampleController">
<chart:gauge value="{{value}}" min="{{min}}" max="{{max}}" title="Speed" value-suffix="mph" stops="[[0.1, '#55BF3B'], [0.5, '#DDDF0D'], [0.9, '#DF5353']]">
<chart:credit text="twigkit.com" href="http://www.twigkit.com"></chart:credit>
<chart:export file-name="gauge"></chart:export>
</chart:gauge>
<form class="tk-stl-form tk-stl-form-aligned">
<fieldset>
<div class="tk-stl-control-group">
<label for="value">Value</label>
<input id="value" type="number" placeholder="Value" ng-model="value">
<button ng-click="generateNewNumber()" style="button tiny">Generate Random Value</button>
</div>
<div class="tk-stl-control-group">
<label for="min">Min</label>
<input id="min" type="number" placeholder="Min" ng-model="min">
</div>
<div class="tk-stl-control-group">
<label for="max">Max</label>
<input id="max" type="number" placeholder="Max" ng-model="max">
</div>
</fieldset>
</form>
</div>