-
Notifications
You must be signed in to change notification settings - Fork 81
/
CandleStickChart.js
66 lines (61 loc) · 2.02 KB
/
CandleStickChart.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {requireNativeComponent, View} from 'react-native';
class CandleStickChart extends Component {
constructor(props) {
super(props);
}
render() {
return (
<MPCandleStickChart {...this.props}/>
);
}
}
CandleStickChart.propTypes = {
...View.propTypes,
data:PropTypes.object,
touchEnabled:PropTypes.bool,
dragEnabled:PropTypes.bool,
scaleEnabled:PropTypes.bool,
scaleXEnabled:PropTypes.bool,
scaleYEnabled:PropTypes.bool,
pinchZoom:PropTypes.bool,
doubleTapToZoomEnabled:PropTypes.bool,
highlightPerDragEnabled:PropTypes.bool,
highlightPerTapEnabled:PropTypes.bool,
dragDecelerationEnabled:PropTypes.bool,
dragDecelerationFrictionCoef:PropTypes.number,
maxVisibleValueCount:PropTypes.number,
limitLine:PropTypes.object,
description:PropTypes.string,
backgroundColor:PropTypes.string,
drawGridBackground:PropTypes.bool,
gridBackgroundColor:PropTypes.string,
visibleXRange:PropTypes.array,
borderColor:PropTypes.string,
borderWidth:PropTypes.number,
xAxis:PropTypes.object,
yAxisLeft:PropTypes.object,
yAxisRight:PropTypes.object,
yAxis:PropTypes.object,
fitScreen:PropTypes.bool,
chartPadding:PropTypes.string,
legend:PropTypes.object,
scaleX: PropTypes.number,
scaleY: PropTypes.number,
translateX: PropTypes.number,
translateY: PropTypes.number,
rotation: PropTypes.number,
renderToHardwareTextureAndroid: PropTypes.bool,
onLayout: PropTypes.bool,
accessibilityLiveRegion: PropTypes.string,
accessibilityComponentType: PropTypes.string,
importantForAccessibility: PropTypes.string,
accessibilityLabel: PropTypes.string,
testID: PropTypes.string,
viewCenter: PropTypes.array,
zoomTo: PropTypes.object,
extraOffsets: PropTypes.string
}
var MPCandleStickChart = requireNativeComponent('MPCandleStickChart', CandleStickChart);
export default CandleStickChart;