Merge branch '250-check-vertical-line-width-in-chart' into 'master'
Fix line width in chart Closes #250 See merge request bloodyhealth/drip!205
This commit is contained in:
@@ -7,7 +7,8 @@ export const dotRadius = 5
|
|||||||
const lineWidth = 1.5
|
const lineWidth = 1.5
|
||||||
const colorLtl = '#feb47b'
|
const colorLtl = '#feb47b'
|
||||||
const gridColor = '#d3d3d3'
|
const gridColor = '#d3d3d3'
|
||||||
const gridLineWidth = 0.5
|
const gridLineWidthVertical = 0.6
|
||||||
|
const gridLineWidthHorizontal = 0.3
|
||||||
const numberLabelFontSize = 13
|
const numberLabelFontSize = 13
|
||||||
|
|
||||||
const styles = {
|
const styles = {
|
||||||
@@ -44,7 +45,7 @@ const styles = {
|
|||||||
},
|
},
|
||||||
stroke: {
|
stroke: {
|
||||||
color: gridColor,
|
color: gridColor,
|
||||||
width: gridLineWidth,
|
width: gridLineWidthVertical,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
symptomIcon: {
|
symptomIcon: {
|
||||||
@@ -110,10 +111,10 @@ const styles = {
|
|||||||
},
|
},
|
||||||
horizontalGrid: {
|
horizontalGrid: {
|
||||||
position:'absolute',
|
position:'absolute',
|
||||||
borderColor: gridColor,
|
|
||||||
borderWidth: gridLineWidth,
|
|
||||||
width: '100%',
|
|
||||||
borderStyle: 'solid',
|
borderStyle: 'solid',
|
||||||
|
borderBottomColor: gridColor,
|
||||||
|
borderBottomWidth: gridLineWidthHorizontal,
|
||||||
|
width: '100%',
|
||||||
left: config.columnWidth
|
left: config.columnWidth
|
||||||
},
|
},
|
||||||
nfpLine: {
|
nfpLine: {
|
||||||
|
|||||||
Reference in New Issue
Block a user