Chartjs-How to add faded background to stack chart in react native

1👍

Try to wrap the Animated View and change the styles in this way:

  <View style={styles.data}>
    <View style={[styles.bar, styles.charColorFaded]}>
      <Animated.View style={[styles.charColor, {width: 20}]} />
    </View>
    <Text style={styles.dataNumber}>{20}%</Text>
  </View>

Leave a comment