diff --git a/src/containers/Sensors/SensorGraphIAQ.js b/src/containers/Sensors/SensorGraphIAQ.js index 25f4fae7dcc4d204f8b4c5375e196d0c8261bd0d..228053331a9920c19aab50ed21625df4b8a13318 100644 --- a/src/containers/Sensors/SensorGraphIAQ.js +++ b/src/containers/Sensors/SensorGraphIAQ.js @@ -5,6 +5,7 @@ import { connect } from 'react-redux'; import debounce from 'lodash.debounce'; import { Table, Card, Nav, NavItem, NavLink, + UncontrolledTooltip, } from 'reactstrap'; import { Charts, @@ -469,7 +470,17 @@ class SensorGraphIAQ extends Component {
-

Humidity

+

+ Humidity + {' '} + + + Threshold determined using the OSHA. 2003 standard + +

{this.state.humidityTimeseries.length > 0 && @@ -498,13 +509,25 @@ class SensorGraphIAQ extends Component { id="y" label="% Humidity" min={0} - max={50} + max={100} width="50" type="linear" format=".2f" /> {this.renderLineGraph(this.state.humidityTimeseries)} + + @@ -513,7 +536,17 @@ class SensorGraphIAQ extends Component {

-

CO2

+

+ CO2 + {' '} + + + Threshold determined using the ASHRAE 2010 standard + +

{this.state.co2Timeseries.length > 0 && @@ -549,6 +582,12 @@ class SensorGraphIAQ extends Component { /> {this.renderLineGraph(this.state.co2Timeseries)} + @@ -557,7 +596,17 @@ class SensorGraphIAQ extends Component {

-

Chemicals

+

+ Chemicals + {' '} + + + Threshold determined using the EPA 2014 standard + +

{this.state.chemicalsTimeseries.length > 0 && @@ -593,6 +642,12 @@ class SensorGraphIAQ extends Component { /> {this.renderLineGraph(this.state.chemicalsTimeseries)} + @@ -601,7 +656,17 @@ class SensorGraphIAQ extends Component {

-

Dust

+

+ Dust + {' '} + + + Threshold determined using the EPA 2014 standard + +

{this.state.dustTimeseries.length > 0 && @@ -630,13 +695,25 @@ class SensorGraphIAQ extends Component { id="y" label="mcg3 Dust" min={5} - max={20} + max={30} width="50" type="linear" format=".2f" /> {this.renderLineGraph(this.state.dustTimeseries)} + +