Merge pull request #16 from Abhinandan-Kushwaha/development

Development
This commit is contained in:
Abhinandan Kushwaha 2021-08-16 13:43:22 +05:30 committed by GitHub
commit 743ac1755c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 74 additions and 16 deletions

76
App.js
View File

@ -1,4 +1,6 @@
import React from 'react'; import React, {useState} from 'react';
import {TouchableOpacity} from 'react-native';
import {Alert} from 'react-native';
import {View, Text, StyleSheet} from 'react-native'; import {View, Text, StyleSheet} from 'react-native';
import {BarChart, LineChart, PieChart} from './src'; import {BarChart, LineChart, PieChart} from './src';
@ -18,13 +20,15 @@ const App = () => {
// {value: 100, text: 'May'}, // {value: 100, text: 'May'},
// ]; // ];
const [toggle, setToggle] = useState(true);
const data = [ const data = [
{value: 15, label: 'Jan', showVerticalLine: true}, {value: 15, label: 'Jan', showVerticalLine: true},
{ {
value: 40, value: 40,
label: 'Feb', label: 'Feb',
verticalLineColor: 'red', verticalLineColor: 'red',
showVerticalLine: true, // showVerticalLine: true,
verticalLineThickness: StyleSheet.hairlineWidth, verticalLineThickness: StyleSheet.hairlineWidth,
}, },
{ {
@ -35,7 +39,24 @@ const App = () => {
dataPointHeight: 20, dataPointHeight: 20,
dataPointWidth: 20, dataPointWidth: 20,
}, },
{value: 30, label: 'Apr', showVerticalLine: true, showDataPoint: true}, {
value: 30,
label: 'Apr',
// showVerticalLine: true,
showDataPoint: true,
},
{value: 20, label: 'May'},
{value: 40, label: 'Jun'},
{value: 48, label: 'Jul'},
{value: 30, label: 'Aug'},
{value: 20, label: 'Sep'},
{value: 40, label: 'Oct'},
{
value: 48,
label: 'Nov',
onPress: () => Alert.alert('Sales in Nov skyrocketed to $48 M'),
},
{value: 30, label: 'Dec'},
]; ];
const stackData = [ const stackData = [
@ -156,25 +177,62 @@ const App = () => {
}}> }}>
{/* <LineChart data={ldata} /> */} {/* <LineChart data={ldata} /> */}
<PieChart {/* <PieChart
donut donut
innerRadius={80} innerRadius={80}
data={pieData} data={pieData}
centerLabelComponent={() => { centerLabelComponent={() => {
return <Text style={{fontSize: 30}}>70%</Text>; return <Text style={{fontSize: 30}}>70%</Text>;
}} }}
/> /> */}
{/* <BarChart {toggle ? (
<BarChart
data={data} data={data}
horizontal // horizontal
isAnimated
showGradient showGradient
cappedBars cappedBars
capColor={'rgba(78, 0, 142)'} yAxisColor={'rgb(78, 0, 142)'}
xAxisColor={'rgb(78, 0, 142)'}
xAxisThickness={3}
yAxisThickness={3}
yAxisTextStyle={{color: 'rgb(78, 0, 142)'}}
capColor={'rgb(78, 0, 142)'}
capThickness={4} capThickness={4}
barWidth={35} barWidth={35}
gradientColor={'rgba(200, 100, 244,0.8)'} gradientColor={'rgba(200, 100, 244,0.8)'}
frontColor={'rgba(219, 182, 249,0.2)'} frontColor={'rgba(219, 182, 249,0.2)'}
/> */} />
) : (
<LineChart
data={data}
areaChart
initialSpacing={0}
curved
isAnimated
showGradient
cappedBars
color={'rgb(78, 0, 142)'}
yAxisColor={'rgb(78, 0, 142)'}
xAxisColor={'rgb(78, 0, 142)'}
dataPointsColor={'rgb(78, 0, 142)'}
dataPointsWidth={1}
dataPointsHeight={1}
xAxisThickness={3}
yAxisThickness={3}
yAxisTextStyle={{color: 'rgb(78, 0, 142)'}}
startFillColor={'rgb(200, 100, 244)'}
startOpacity={0.9}
endFillColor={'rgb(255, 255, 255)'}
endOpacity={0.2}
/>
)}
<TouchableOpacity
onPress={() => setToggle(!toggle)}
style={{marginTop: 100, alignSelf: 'center'}}>
<Text>Line Chart</Text>
</TouchableOpacity>
{/* <BarChart {/* <BarChart
width={340} width={340}

View File

@ -310,7 +310,7 @@ export const BarChart = (props: PropTypes) => {
{index === noOfSections ? ( {index === noOfSections ? (
<View <View
style={[ style={[
styles.line, styles.lastLine,
{height: xAxisThickness, backgroundColor: xAxisColor}, {height: xAxisThickness, backgroundColor: xAxisColor},
]} ]}
/> />