forked from hongyin163/react-native-chart-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PieChart.android.js
50 lines (45 loc) · 1.44 KB
/
PieChart.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
import React, {Component, PropTypes} from 'react';
import {requireNativeComponent, View} from 'react-native';
class PieChart extends Component {
constructor(props) {
super(props);
}
render() {
return (
<MPPieChart {...this.props}/>
);
}
}
PieChart.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,
borderColor:PropTypes.string,
borderWidth:PropTypes.number,
chartPadding:PropTypes.string,
legend:PropTypes.object,
holeRadius: PropTypes.number,
transparentCircleRadius: PropTypes.number,
drawSliceText: PropTypes.bool,
usePercentValues: PropTypes.bool,
centerText: PropTypes.string,
centerTextRadiusPercent: PropTypes.number
}
var MPPieChart = requireNativeComponent('MPPieChart', PieChart);
export default PieChart;