diff --git a/components/chart/day-column.js b/components/chart/day-column.js
index 2f419a0..7f3fe5f 100644
--- a/components/chart/day-column.js
+++ b/components/chart/day-column.js
@@ -2,10 +2,7 @@ import React, { Component } from 'react'
import {
Text, View, TouchableOpacity
} from 'react-native'
-import Svg,{
- G,
- Rect
-} from 'react-native-svg'
+import Svg,{ G, Rect, Line } from 'react-native-svg'
import Icon from 'react-native-vector-icons/Entypo'
import styles from './styles'
import config from '../../config'
@@ -51,16 +48,31 @@ export default class DayColumn extends Component {
const columnElements = []
if(drawLtlAt) {
- const ltlLine = ()
columnElements.push(ltlLine)
}
+ if (drawFhmLine) {
+ const x = styles.nfpLine.strokeWidth / 2
+ const fhmLine = ()
+ columnElements.push(fhmLine)
+ }
+
+
if (y) {
columnElements.push(
)
- // we merge the colors here instead of from the stylesheet because of a RN
- // bug that doesn't apply borderLeftColor otherwise
- const potentialCustomStyle = {
- height: columnHeight,
- borderLeftColor: 'grey',
- }
-
- if (drawFhmLine) {
- potentialCustomStyle.borderLeftColor = styles.nfpLine.borderColor
- potentialCustomStyle.borderLeftWidth = 3
- }
- // const column = React.createElement(
- // TouchableOpacity,
- // {
- // style: [styles.column.rect, potentialCustomStyle],
- // key: this.props.index.toString(),
- // onPress: () => {
- // this.passDateToDayView(dateString)
- // },
- // activeOpacity: 1
- // },
- // columnElements
- // )
-
const column = (