Comment out undone features
parent
79ec80b5ff
commit
6865b90e33
|
@ -1,6 +1,7 @@
|
||||||
import React, {PropTypes} from 'react'
|
import React, {PropTypes} from 'react'
|
||||||
import _ from 'lodash'
|
import _ from 'lodash'
|
||||||
|
|
||||||
|
// TODO: add logic for for Prefix, Suffix, Scale, and Multiplier
|
||||||
const Ranger = ({onSetRange, axes}) => {
|
const Ranger = ({onSetRange, axes}) => {
|
||||||
const min = _.get(axes, ['y', 'bounds', '0'], '')
|
const min = _.get(axes, ['y', 'bounds', '0'], '')
|
||||||
const max = _.get(axes, ['y', 'bounds', '1'], '')
|
const max = _.get(axes, ['y', 'bounds', '1'], '')
|
||||||
|
@ -9,7 +10,7 @@ const Ranger = ({onSetRange, axes}) => {
|
||||||
<div className="display-options--cell">
|
<div className="display-options--cell">
|
||||||
<h5 className="display-options--header">Y Axis Controls</h5>
|
<h5 className="display-options--header">Y Axis Controls</h5>
|
||||||
<form autoComplete="off" style={{margin: '0 -6px'}}>
|
<form autoComplete="off" style={{margin: '0 -6px'}}>
|
||||||
<div className="form-group col-sm-3">
|
{/* <div className="form-group col-sm-3">
|
||||||
<label htmlFor="prefix">Prefix</label>
|
<label htmlFor="prefix">Prefix</label>
|
||||||
<input
|
<input
|
||||||
className="form-control input-sm"
|
className="form-control input-sm"
|
||||||
|
@ -35,7 +36,7 @@ const Ranger = ({onSetRange, axes}) => {
|
||||||
name="suffix"
|
name="suffix"
|
||||||
id="suffix"
|
id="suffix"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div> */}
|
||||||
<div className="form-group col-sm-6">
|
<div className="form-group col-sm-6">
|
||||||
<label htmlFor="min">Min</label>
|
<label htmlFor="min">Min</label>
|
||||||
<input
|
<input
|
||||||
|
@ -60,7 +61,7 @@ const Ranger = ({onSetRange, axes}) => {
|
||||||
placeholder="auto"
|
placeholder="auto"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="form-group col-sm-6">
|
{/* <div className="form-group col-sm-6">
|
||||||
<label>Units</label>
|
<label>Units</label>
|
||||||
<ul className="nav nav-tablist nav-tablist-sm">
|
<ul className="nav nav-tablist nav-tablist-sm">
|
||||||
<li className="active">Base 10</li>
|
<li className="active">Base 10</li>
|
||||||
|
@ -73,7 +74,7 @@ const Ranger = ({onSetRange, axes}) => {
|
||||||
<li className="active">Linear</li>
|
<li className="active">Linear</li>
|
||||||
<li>Logarithmic</li>
|
<li>Logarithmic</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div> */}
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue