This repository has been archived by the owner on Jan 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathRadarChartScreen.js
100 lines (87 loc) · 2.03 KB
/
RadarChartScreen.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
import React from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View
} from 'react-native';
import reactAddonsUpdate from 'react-addons-update';
import {RadarChart} from 'react-native-mp-android-chart';
class RadarChartScreen extends React.Component {
constructor() {
super();
this.state = {
data: {},
legend: {
enabled: true,
textSize: 14,
form: 'CIRCLE',
wordWrapEnabled: true
}
};
}
componentDidMount() {
this.setState(
reactAddonsUpdate(this.state, {
data: {
$set: {
datasets: [{
yValues: [100, 110, 105, 115, 110],
label: 'DS 1',
config: {
color: '#FF8C9D',
drawFilled: true,
fillColor: '#FF8C9D',
fillAlpha: 100,
lineWidth: 2
}
}, {
yValues: [115, 100, 105, 110, 120],
label: 'DS 2',
config: {
color: '#C0FF8C',
drawFilled: true,
fillColor: '#C0FF8C',
fillAlpha: 150,
lineWidth: 1.5
}
}, {
yValues: [105, 115, 121, 110, 105],
label: 'DS 3',
config: {
color: '#8CEAFF',
drawFilled: true,
fillColor: '#8CEAFF'
}
}],
xValues: ['A', 'B', 'C', 'D', 'E']
}
}
})
);
}
render() {
return (
<View style={styles.container}>
<RadarChart
style={styles.chart}
data={this.state.data}
description={{text: ''}}
legend={this.state.legend}
skipWebLineCount={1}
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#F5FCFF'
},
chart: {
flex: 1
}
});
AppRegistry.registerComponent('RadarChartScreen', () => RadarChartScreen);
export default RadarChartScreen;