forked from hongyin163/react-native-chart-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCombinedChart.android.js
111 lines (104 loc) · 3.08 KB
/
CombinedChart.android.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import React, {Component, PropTypes} from 'react';
import {requireNativeComponent, View} from 'react-native';
class CombinedChart extends Component {
constructor(props) {
super(props);
}
render() {
let chartData={};
let children=this.props.children;
if(children.size){
for (var i = 0; i < children.size; i++) {
var child=children[i]
chartData[child.props.chartType]=child.props.data;
}
}else{
chartData[children.props.chartType]=children.props.data;
}
let {
style,
data,
...other
}=this.props;
return (
<MPCombinedChart
style={this.props.style}
{...other}
data={chartData}/>
);
}
}
CombinedChart.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: React.PropTypes.bool,
onLayout: React.PropTypes.bool,
accessibilityLiveRegion: React.PropTypes.string,
accessibilityComponentType: React.PropTypes.string,
importantForAccessibility: React.PropTypes.string,
accessibilityLabel: React.PropTypes.string,
testID: React.PropTypes.string,
viewCenter: React.PropTypes.array,
zoomTo: PropTypes.object,
extraOffsets: PropTypes.string
};
class chart extends Component {
constructor(props) {
super(props);
}
render(){
return null;
}
}
chart.propTypes = {
chartType:PropTypes.string,
data:PropTypes.object
};
CombinedChart.Chart=chart;
// RIGHT_OF_CHART,
// RIGHT_OF_CHART_CENTER,
// RIGHT_OF_CHART_INSIDE,
// LEFT_OF_CHART,
// LEFT_OF_CHART_CENTER,
// LEFT_OF_CHART_INSIDE,
// BELOW_CHART_LEFT,
// BELOW_CHART_RIGHT,
// BELOW_CHART_CENTER,
// ABOVE_CHART_LEFT,
// ABOVE_CHART_RIGHT,
// ABOVE_CHART_CENTER,
// PIECHART_CENTER;
var MPCombinedChart = requireNativeComponent('MPCombinedChart', CombinedChart);
export default CombinedChart;