Search code examples
react-natived3.jsreact-native-iosreact-native-svg

React Native funnel chart


Is there any React native package to create funnel chart like in this?

need react-native package to implement

or how to implement this chart on our own in react-native?


Solution

  • When it comes to drawing lines, shapes, gradients, etc, you have about two decent options in the react-native space.

    The first one is React Native Art, the second one is react-native-svg. There are some charting libraries available as well, but when you want full customisation and styling/design options, the best way probably is to stay as close to the drawing api's as possible.

    The funnel-graph-js project you mention uses browser SVG to draw the funnel chart, so I guess you can probably copy and adjust some code to achieve a similar result using react-native-svg.