annotations.editor.html 660 B

1234567891011121314151617181920
  1. <div class="gf-form-group">
  2. <h6>Filters</h6>
  3. <div class="gf-form-inline">
  4. <div class="gf-form">
  5. <span class="gf-form-label width-7">Type</span>
  6. <div class="gf-form-select-wrapper">
  7. <select class="gf-form-input" ng-model="ctrl.annotation.type" ng-options="f.value as f.text for f in [{text: 'Alert', value: 'alert'}]">
  8. </select>
  9. </div>
  10. </div>
  11. <div class="gf-form">
  12. <span class="gf-form-label width-7">Max limit</span>
  13. <div class="gf-form-select-wrapper">
  14. <select class="gf-form-input" ng-model="ctrl.annotation.limit" ng-options="f for f in [10,50,100,200,300,500,1000,2000]">
  15. </select>
  16. </div>
  17. </div>
  18. </div>
  19. </div>