editor.html 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <div class="row-fluid">
  2. <div class="span11">
  3. The map panel uses 2 letter country or US state codes to plot concentrations on a map. Darker terroritories mean more records matched that area. If multiple queries are sent from a single panel the <strong>first query will be displayed</strong>
  4. </div>
  5. </div>
  6. <div class="row-fluid">
  7. <div class="span3">
  8. <form>
  9. <h6>Field</h6>
  10. <input bs-typeahead="fields.list" type="text" class="input-small" ng-model="panel.field">
  11. </form>
  12. </div>
  13. <div class="span1"><h6>Map</h6>
  14. <select ng-change="$emit('render')" class="input-small" ng-model="panel.map" ng-options="f for f in ['world','europe','usa']"></select>
  15. </div>
  16. </div>
  17. <div class="row-fluid" ng-include="'partials/querySelect.html'"></div>
  18. <h5>Panel Spy</h5>
  19. <div class="row-fluid">
  20. <div class="span2">
  21. <label class="small"> Spyable </label><input type="checkbox" ng-model="panel.spyable" ng-checked="panel.spyable">
  22. </div>
  23. <div class="span9 small">
  24. The panel spy shows 'behind the scenes' information about a panel. It can
  25. be accessed by clicking the <i class='icon-eye-open'></i> in the top right
  26. of the panel.
  27. </div>
  28. </div>