skip to Main Content

I want to display two bars chart in react native and I checked many chart libraries and I haven’t found any library for my requirements.

enter image description here

Problem: Display two bars in each month for booking and earning. How can I display this type of bar chart in react native?

2

Answers


  1. This might be of help your use case:
    https://commerce.nearform.com/open-source/victory-native/docs/cartesian/bar/bar-group

    Victory Native is a powerful and customizable charting library that also supports React Native. It works good for comparison graphs

    Login or Signup to reply.
  2. This can be easily achieved using react-native-gifted-charts. You just need to use a prop named secondaryYAxis to render the Y-axis on the right side. This question has already been answered in the Discussions page of react-native-gifted charts where you can see the exact code to render your chart.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search