答案 0 :(得分:0)
您应该尝试将颜色或样式设置为状态,然后在onPress中进行更改。然后更改将被反映:
onPress={()=> this.setState({colors: ['#7b4173', '#a55194', '#ce6dbd', '#de9ed6']})
并在StackedBarChart中,例如,插入作为道具:
<StackedBarChart
style={{ height: 200 }}
keys={keys}
colors={this.state.colors}
data={data}
showGrid={false}
contentInset={{ top: 30, bottom: 30 }}
/>