فهرست منبع

Small tweak to shared tooltip edit option in Display styles tab

Torkel Ödegaard 11 سال پیش
والد
کامیت
2d2da7c881
1فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
  1. 4 4
      src/app/panels/graph/styleEditor.html

+ 4 - 4
src/app/panels/graph/styleEditor.html

@@ -50,10 +50,10 @@
 
   <div class="section">
     <h5>Tooltip</h5>
-    <div class="editor-option">
-			<label class="small">shared <tip> Show all series values on the same time in the same tooltip and a x croshair to help follow all series</tip></label>
-			<input type="checkbox" ng-model="panel.tooltip.shared" ng-checked="panel.tooltip.shared" ng-change="render()">
-    </div>
+		<editor-opt-bool
+			text="All series" model="panel.tooltip.shared" change="render()"
+			tip="Show all series on same tooltip and a x croshair to help follow all series">
+		</editor-opt-bool>
 		<div class="editor-option" ng-show="panel.stack">
       <label class="small">Stacked Values <tip>How should the values in stacked charts to be calculated?</tip></label>
       <select class="input-small" ng-model="panel.tooltip.value_type" ng-options="f for f in ['cumulative','individual']" ng-change="render()"></select>