2

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?

Tutu
  • 99
  • 1
  • 2
  • 14

1 Answers1

2

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.

Thomas
  • 7,933
  • 4
  • 37
  • 45