| <!-- |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <div> |
| xAxis : |
| </div> |
| |
| <div class='btn-group'> |
| <button type="button" |
| class="btn btn-default btn-sm" |
| ng-class="{'active' : config.isXLabelStatus('default')}" |
| ng-click="config.changeXLabel('default')" > |
| Default |
| </button> |
| |
| <button type="button" |
| class="btn btn-default btn-sm" |
| ng-class="{'active' : config.isXLabelStatus('rotate')}" |
| ng-click="config.changeXLabel('rotate')" > |
| Rotate |
| </button> |
| |
| <button type="button" |
| class="btn btn-default btn-sm" |
| ng-class="{'active' : config.isXLabelStatus('hide')}" |
| ng-click="config.changeXLabel('hide')" > |
| Hide |
| </button> |
| |
| |
| <span style="line-height: 2.5;" |
| ng-show="config.isXLabelStatus('rotate')"> |
| degree : |
| <input type="text" class="input-rotate" |
| placeholder="-45" |
| ng-model="config.rotate.degree" |
| ng-enter="config.setDegree(config.rotate.degree)" |
| ng-blur="config.setDegree(config.rotate.degree)" |
| ng-pattern="/^-?[0-9]{1,3}$/" /> |
| </span> |
| </div> |