options.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <div class="dash-row-options">
  2. <div class="gf-form-group section">
  3. <!-- <h5 class="section&#45;heading">Options</h5> -->
  4. <div class="gf-form-inline">
  5. <div class="gf-form">
  6. <span class="gf-form-label width-6">Row Title</span>
  7. <input type="text" class="gf-form-input max-width-14" ng-model='ctrl.row.title'></input>
  8. </div>
  9. <div class="gf-form">
  10. <label class="gf-form-label width-6">Size</label>
  11. <div class="gf-form-select-wrapper">
  12. <select class="input-small gf-form-input" ng-model="ctrl.row.titleSize" ng-options="f for f in ctrl.fontSizes"></select>
  13. </div>
  14. </div>
  15. <gf-form-switch class="gf-form" label="Show" checked="ctrl.row.showTitle">
  16. </gf-form-switch>
  17. </div>
  18. <div class="gf-form-inline">
  19. <div class="gf-form">
  20. <span class="gf-form-label width-6">Height</span>
  21. <input type="text" class="gf-form-input max-width-14" ng-model='ctrl.row.height'></input>
  22. </div>
  23. </div>
  24. </div>
  25. <div class="gf-form-group section">
  26. <!-- <h5 class="section&#45;heading">Row Templating</h5> -->
  27. <div class="gf-form">
  28. <span class="gf-form-label">Repeat Row</span>
  29. <div class="gf-form-select-wrapper max-width-10">
  30. <select class="gf-form-input" ng-model="row.repeat" ng-options="f.name as f.name for f in dashboard.templating.list">
  31. <option value=""></option>
  32. </div>
  33. </div>
  34. </div>
  35. </div>