【发布时间】:2020-05-05 17:08:29
【问题描述】:
我正在使用 react-native-chart-kit,我正在尝试使用任何颜色填充条形的 cbar 图表,到目前为止它是灰色的,但我正在尝试更改它,但我尝试添加颜色: {} 在数据集部分以及 svg.但是没有成功。任何建议将不胜感激。
render() {
return (
<View>
<BarChart
data={{
labels: [
'1',
'2',
'3',
'4',
'5',
'6',
'7'
],
datasets: [
{
data: this.props.data,
},
],
}}
svg={{ fill: 'green' }}
width={Dimensions.get('window').width - 16}
height={220}
chartConfig={{
backgroundColor: '#fff',
backgroundGradientFrom: '#fff',
backgroundGradientTo: '#fff',
decimalPlaces: 2,
color: (opacity = 1) => `rgba(0, 0, 0, ${opacity})`,
style: {
borderRadius: 16,
},
propsForDots: {
r: "0",
strokeWidth: "2",
stroke: "#fff"
},
propsForBackgroundLines: {
strokeWidth: 0
},
}}
style={{
marginVertical: 8,
borderRadius: 16,
}}
/>
</View>
);
}
【问题讨论】:
标签: react-native react-native-chart-kit