editor.html 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <div>
  2. <div class="row-fluid">
  3. <div class="span12">
  4. The trends panel will give you a percentage representation of how your query
  5. has moved in your current timespan compared a specified amount of time ago. For
  6. example, if the time is 1:10pm, your time picker was set to "Last 10m", and the
  7. "Time Ago" parameter was set to '1h', the panel would show how much the query
  8. results have changed since 12:00-12:10pm
  9. </div>
  10. </div>
  11. <h4>Settings</h4>
  12. <div class="row-fluid">
  13. <div class="span3" ng-hide='panel.auto_int'>
  14. <label class="small">Use Elasticsearch date math format here (eg 1m, 5m, 1d, 2w, 1y)</label>
  15. </div>
  16. <div class="span3">
  17. <label class="small">Time Ago</label>
  18. <input type="text" class="input-small" ng-model="panel.ago" ng-change="set_refresh(true)">
  19. </div>
  20. <div class="span2">
  21. <label class="small">Font Size</label>
  22. <select class="input-small" ng-model="panel.style['font-size']" ng-options="f for f in ['7pt','8pt','9pt','10pt','12pt','14pt','16pt','18pt','20pt','24pt','28pt','32pt','36pt','42pt','48pt','52pt','60pt','72pt']"></select></span>
  23. </div>
  24. <div class="span3">
  25. <label class="small" >List Format</label>
  26. <select class="input-small" ng-model="panel.arrangement" ng-options="f for f in ['horizontal','vertical']"></select></span>
  27. </div>
  28. </div>
  29. </div>