<div class=“editor-row”>
<div class="section"> <h5>Values</h5> <div class="editor-option"> <label class="small">Chart value</label> <select ng-change="set_refresh(true)" class="input-small" ng-model="panel.mode" ng-options="f for f in ['count','min','mean','max','total']"></select> </div> <div class="editor-option"> <label class="small">Time Field</label> <input ng-change="set_refresh(true)" placeholder="Start typing" bs-typeahead="fields.list" type="text" class="input-small" ng-model="panel.time_field"> </div> <div class="editor-option" ng-show="panel.mode != 'count'"> <label class="small">Value Field <tip>This field must contain a numeric value</tip></label> <input ng-change="set_refresh(true)" placeholder="Start typing" bs-typeahead="fields.list" type="text" class="input-large" ng-model="panel.value_field"> </div> </div> <div class="section"> <h5>Transform Series</h5> <div class="editor-option"> <label class="small">Derivative <tip>Plot the change per interval in the series</tip></label><input type="checkbox" ng-model="panel.derivative" ng-checked="panel.derivative" ng-change="set_refresh(true)"> </div> </div>
</div>