Skip to content

Commit

Permalink
Ability to set y axis min/max (closes #257)
Browse files Browse the repository at this point in the history
  • Loading branch information
arikfr committed Jan 27, 2015
1 parent a00c80e commit 1e4e37c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions rd_ui/app/views/visualizations/chart_editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,25 @@
ng-model="globalSeriesType" class="form-control"></select>
</div>
</div>

<div class="form-group">
<label class="control-label col-sm-2">y Axis min</label>

<div class="col-sm-10">
<input name="yAxisMin" type="number" class="form-control"
ng-model="visualization.options.yAxis.min"
placeholder="Auto">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2">y Axis max</label>

<div class="col-sm-10">
<input name="yAxisMin" type="number" class="form-control"
ng-model="visualization.options.yAxis.max"
placeholder="Auto">
</div>
</div>
</div>
</div>

Expand Down

0 comments on commit 1e4e37c

Please sign in to comment.