我正在使用此库:
https://github.com/indiespirit/react-native-chart-kit
但我收到此错误消息:
Error while updating property 'd' in shadow node of type: RNSVGPath
<View style={{width:'100%',height:'100%'}}>
<Text style={{fontSize:20,fontWeight:'bold'}}>
pichart
</Text>
<PieChart
data={chartAnswered}
width={chartWidth} // from react-native
height={220}
chartConfig={{
backgroundColor: colorConstants.ONE_APP_COLOR,
backgroundGradientFrom: colorConstants.ONE_APP_COLOR,
backgroundGradientTo: '#044675',
color: (opacity = 1) => `rgba(255, 255, 255, ${opacity})`,
style: {
borderRadius: 16
}
}}
bezier
style={{
marginVertical: 8,
borderRadius: 16
}}
/>
</View>
我的数据:
chartAnswered:[
{ name: 'Italy', population: Math.random() * 10000 },
{ name: 'Mexico', population: Math.random() * 10000 },
{ name: 'France', population: Math.random() * 10000 },
{ name: 'Argentina', population: Math.random() * 10000 },
{ name: 'Japan', population: Math.random() * 10000 }
]
我的package.json
:
"dependencies": {
"jalali-moment": "^3.2.1",
"moment": "^2.22.2",
"native-base": "^2.6.1",
"paths-js": "^0.4.7",
"react": "16.3.1",
"react-native": "0.55.4",
"react-native-chart-kit": "^1.1.5",
"react-native-contacts": "^2.2.2",
"react-native-document-picker": "^2.1.0",
"react-native-fs": "^2.11.15",
"react-native-image-resizer": "^1.0.0",
"react-native-material-bottom-navigation": "^1.0.0",
"react-native-progress-bar-animated": "^1.0.6",
"react-native-slider": "^0.11.0",
"react-native-svg": "^6.5.2",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^2.8.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"watchman": "^1.0.0"
},