You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-native-funnel-chart

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-funnel-chart

React native funnel chart easy to use

1.1.5
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

React Native Funnel Chart

Note : This Library is under BETA and does not support in landscape mode (BUG)

Installation


yarn add react-native-funnel-chart

npm i react-native-funnel-chart

Props

PropsTypeDescription
dataArrayRequired. Array of Data
backgroundColorStringBackground Color Hex
heightNumberHeight of the chart, > 150
lineColorStringColor the Line and Dot after Label
spaceNumberSpace Between Data
fontSizeNumberFont Size of Label Text
textColorStringLabel Text Color
fontFamilyStringLabel Text FontFamily

Example

import FunnelChart from 'react-native-funnel-chart';

 const demo_data = [
  {
    label: 'Unique Website Visits',
    value: '13589',
    color: '#9b46ff40',
  },
  {
    label: 'Programme Details Section Visits',
    value: '8855',
    color: '#9b46ff80',
  },
  {
    label: 'Attempts to Register',
    value: '8453',
    color: '#9b46ff60',
  },
  {
    label: 'Successful Registrations',
    value: '10586',
    color: '#9b46ff',
  },
];


 <FunnelChart
          animated
          data={demo_data}
          backgroundColor={'#000'}
          height={200}
          lineColor={'#fff'}
          space={3}
          fontSize={12}
          textColor={'#fff'}
        />

Supported By

Keywords

react-native-funnel-chart

FAQs

Package last updated on 11 Aug 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts