Explorar el Código

heatmap: add explanation of Time series buckets mode

Alexander Zobnin hace 7 años
padre
commit
759e05d09e
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      public/app/plugins/panel/heatmap/partials/axes_editor.html

+ 3 - 1
public/app/plugins/panel/heatmap/partials/axes_editor.html

@@ -93,7 +93,9 @@
     <div class="gf-form">
       <label class="gf-form-label width-5">Format</label>
       <div class="gf-form-select-wrapper max-width-15">
-        <select class="gf-form-input" ng-model="ctrl.panel.dataFormat" ng-options="v as k for (k, v) in editor.dataFormats" ng-change="ctrl.render()"></select>
+        <select class="gf-form-input" ng-model="ctrl.panel.dataFormat" ng-options="v as k for (k, v) in editor.dataFormats" ng-change="ctrl.render()"
+          data-placement="right" bs-tooltip="'Time series: create heatmap from regular time series. <br>Time series buckets: use histogram data returned from data source. Each series represents bucket which upper/lower bound is a series label.'">
+        </select>
       </div>
     </div>
   </div>