forked from JesperLekland/react-native-svg-charts-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grid-min-max.js
36 lines (29 loc) · 892 Bytes
/
grid-min-max.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import React from 'react'
import { AreaChart, Path } from 'react-native-svg-charts'
import * as shape from 'd3-shape'
class GridMinMaxExample extends React.PureComponent {
render() {
const data = [ 50, 10, 40, 95, -4, -24, 85, 91, 35, 53, -53, 24, 50, -20, -80 ]
const Line = ({ line }) => (
<Path
key={ 'line ' }
d={ line }
stroke={ 'rgb(134, 65, 244)' }
fill={ 'none' }
/>
)
return (
<AreaChart
style={{ height: 200 }}
data={ data }
svg={{ fill: 'rgba(134, 65, 244, 0.2)' }}
curve={ shape.curveNatural }
gridMax={ 500 }
gridMin={ -500 }
>
<Line/>
</AreaChart>
)
}
}
export default GridMinMaxExample