|
|
@@ -1,13 +1,58 @@
|
|
|
<div class="editor-row">
|
|
|
|
|
|
- <div class="editor-row">
|
|
|
+ <div class="section">
|
|
|
+ <h5>Axis</h5>
|
|
|
<div class="editor-option">
|
|
|
- <label class="small">Left y-axis label</label>
|
|
|
- <input ng-change="get_data()" ng-model-onblur placeholder="" type="text" class="input-large" ng-model="panel.leftYAxisLabel">
|
|
|
+ <label class="small">X-Axis</label><input type="checkbox" ng-model="panel['x-axis']" ng-checked="panel['x-axis']" ng-change="render()">
|
|
|
</div>
|
|
|
<div class="editor-option">
|
|
|
- <label class="small">Right y-axis label</label>
|
|
|
- <input ng-change="get_data()" ng-model-onblur placeholder="" type="text" class="input-large" ng-model="panel.rightYAxisLabel">
|
|
|
+ <label class="small">Y-Axis</label><input type="checkbox" ng-model="panel['y-axis']" ng-checked="panel['y-axis']" ng-change="render()">
|
|
|
+ </div>
|
|
|
+ <div class="editor-option" ng-show="panel.points">
|
|
|
+ <label class="small">Point Radius</label>
|
|
|
+ <select class="input-mini" ng-model="panel.pointradius" ng-options="f for f in [1,2,3,4,5,6,7,8,9,10]" ng-change="render()"></select>
|
|
|
+ </div>
|
|
|
+ <div class="editor-option">
|
|
|
+ <label class="small">Left Y Format <tip>Y-axis formatting</tip></label>
|
|
|
+ <select class="input-small" ng-model="panel.y_format" ng-options="f for f in ['none','short','bytes', 'ms']" ng-change="render()"></select>
|
|
|
+ </div>
|
|
|
+ <div class="editor-option">
|
|
|
+ <label class="small">Right Y Format <tip>Y-axis formatting</tip></label>
|
|
|
+ <select class="input-small" ng-model="panel.y2_format" ng-options="f for f in ['none','short','bytes', 'ms']" ng-change="render()"></select>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="editor-option">
|
|
|
+ <label class="small">Left Y-axis label</label>
|
|
|
+ <input ng-change="get_data()" ng-model-onblur placeholder="" type="text" class="input-medium" ng-model="panel.leftYAxisLabel">
|
|
|
+ </div>
|
|
|
+ <div class="editor-option">
|
|
|
+ <label class="small">Right Y-axis label</label>
|
|
|
+ <input ng-change="get_data()" ng-model-onblur placeholder="" type="text" class="input-medium" ng-model="panel.rightYAxisLabel">
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+</div>
|
|
|
+
|
|
|
+<div class="editor-row">
|
|
|
+
|
|
|
+ <div class="section">
|
|
|
+ <h5>Grid</h5>
|
|
|
+ <div class="editor-option">
|
|
|
+ <label class="small">Min / <a href='' ng-click="panel.grid.min = _.toggle(panel.grid.min,null,0)">Auto <i class="icon-star" ng-show="_.isNull(panel.grid.min)"></i></a></label>
|
|
|
+ <input type="number" class="input-small" ng-model="panel.grid.min"/>
|
|
|
+ </div>
|
|
|
+ <div class="editor-option">
|
|
|
+ <label class="small">Max / <a ref='' ng-click="panel.grid.max = _.toggle(panel.grid.max,null,0)">Auto <i class="icon-star" ng-show="_.isNull(panel.grid.max)"></i></a></label>
|
|
|
+ <input type="number" class="input-small" ng-model="panel.grid.max"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="section">
|
|
|
+ <h5>Legend</h5>
|
|
|
+ <div class="editor-option">
|
|
|
+ <label class="small">Legend</label><input type="checkbox" ng-model="panel.legend" ng-checked="panel.legend">
|
|
|
</div>
|
|
|
</div>
|
|
|
|