editor.html 1.1 KB

12345678910111213141516171819202122232425262728
  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. <h5>Panel Spy</h5>
  18. <div class="row-fluid">
  19. <div class="span2">
  20. <label class="small"> Spyable </label><input type="checkbox" ng-model="panel.spyable" ng-checked="panel.spyable">
  21. </div>
  22. <div class="span9 small">
  23. The panel spy shows 'behind the scenes' information about a panel. It can
  24. be accessed by clicking the <i class='icon-eye-open'></i> in the top right
  25. of the panel.
  26. </div>
  27. </div>