React Native Area Chart Example

Jun 17, 2021 . Admin

Hi Guys,

In this blog,I will learn you how to use area chart in react native. We will show example of area chart in react native. You can easliy create react native area chart. First i will import AreaChart namespace from react-native-svg-charts, after I will make area chart using in react native.

Step 1 - Create project

In the first step Run the following command for create project.

expo init MyWebtuts 
Step 2 - Installation of Dependency

In the step, Run the following command for installation of dependency.

To use AreaChart you need to install react-native-svg-chartss package.

To install this open the terminal and jump into your project

cd paper MyWebtuts 
Run the following command
yarn add react-native-svg-charts
after install d3-shape package for shape.
yarn add d3-shape
Next, I will in install react-native-paper for App bar.
yarn add react-native-paper
Step 3 - App.js

In this step, You will open App.js file and put the code.

import React, { Component } from "react";
import { View,StyleSheet,Text} from 'react-native';
import { Provider ,Appbar,Card} from 'react-native-paper';
import { AreaChart, Grid } from 'react-native-svg-charts';
import * as shape from 'd3-shape';

const MyWebtutsComponent = () => {
      
    const data = [50, 10, 40, 95, -4, -24, 85, 91, 35, 53, -53, 24, 50, -20, -80]

    const _goBack = () => console.log('Went back');

    const _handleSearch = () => console.log('Searching');

    const _handleMore = () => console.log('Shown more');

    return (
      <Provider>
		<Appbar.Header style={styles.header}>
			<Appbar.BackAction onPress={_goBack} />
			<Appbar.Content title="MyWebtuts" subtitle="Subtitle" />
			<Appbar.Action icon="magnify" onPress={_handleSearch} />
			<Appbar.Action icon="dots-vertical" onPress={_handleMore} />
		</Appbar.Header>
        <View style={styles.mainbox}>
          <Text style={styles.title}>React Native Area Chart Example</Text>
          <Card>
          <AreaChart
                style={{ height: 200 }}
                data={data}
                contentInset={{ top: 30, bottom: 30 }}
                curve={shape.curveNatural}
                svg={{ fill: 'rgba(134, 65, 244, 0.8)' }}
            >
                <Grid />
            </AreaChart>
           </Card>
        </View>
      </Provider>
    );
  };


  const styles = StyleSheet.create({
    mainbox:{
      textAlign:'center',
      margin: 15,
      justifyContent: 'space-between',
    },
    title:{
      fontSize: 21
    }
  });
  export default MyWebtutsComponent;
Step 3 - Run project

In the last step run your project using bellow command.

expo start
Output

It will help you...

#React Native