├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── config.yml ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TESTS.md ├── __tests__ ├── BarChart.test.tsx ├── LineChart.test.tsx ├── PieChart.test.tsx ├── TestCases.md └── __snapshots__ │ ├── BarChart.test.tsx.snap │ ├── LineChart.test.tsx.snap │ └── PieChart.test.tsx.snap ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── giftedcharts │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── giftedcharts │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── demos ├── altBars.svg ├── animatedDataLine.gif ├── arrowBase.png ├── arrowProps.png ├── barLabelled.png ├── barPairs.svg ├── bars.png ├── blues.png ├── cappedCombined.png ├── crossHair.gif ├── discord.png ├── favicon.png ├── focusPoint.gif ├── gitLogo.png ├── inward.png ├── lineArea.png ├── lineArrow.png ├── mid.png ├── movingBars.gif ├── multiColorY.png ├── npmIcon.png ├── onBorder.png ├── outward.png ├── pie.png ├── pieExt.png ├── pielabbelled.svg ├── ppnLabelled.png ├── pyrLarge.png ├── radar.png ├── rainbow.png ├── redditLogo.png ├── rotate3D.gif ├── rotatePie.gif ├── scrollLine.gif ├── stackHighlight.gif ├── stackOverflow.png ├── stackdesc.png ├── stacks.png └── strips.png ├── docs ├── BarChart │ └── BarChartProps.md ├── LineChart │ ├── LineChartBicolorProps.md │ └── LineChartProps.md ├── PieChart │ └── PieChartProps.md ├── PopulationPyramid │ └── PopulationPyramid.md ├── RadarChart │ └── RadarChartProps.md ├── dev │ ├── BarChart │ │ ├── BarChart.drawio.svg │ │ └── index.md │ ├── LineChart │ │ ├── Focusing.md │ │ ├── LineChart.drawio.svg │ │ ├── MultiLine.md │ │ └── index.md │ ├── PieChart │ │ └── index.md │ ├── gifted-charts-architecture.drawio.svg │ └── index.md └── docs.md ├── examples ├── BarChart │ ├── BarChartWithGivenNumberOfVerticalLines.tsx │ ├── BarPairWithLine.tsx │ ├── BarThreeD.tsx │ ├── BarWithGradient.tsx │ ├── CappedBars.tsx │ ├── RoundStackBar.tsx │ ├── ShiftXaxisLabels.tsx │ ├── SimpleBarAnimated.tsx │ ├── SimpleBarsEndReached.tsx │ ├── SimpleBlueBars.tsx │ ├── SimpleBlueBarsVerticalLines.tsx │ ├── StackPairWithPattern.tsx │ └── StackWithNegative.tsx ├── LineChart │ ├── AnimatedArea.tsx │ ├── AreaChartDynamicData.tsx │ ├── AreaTwo.tsx │ ├── BiColorAreaChart.tsx │ ├── CaloriesBurnt.tsx │ ├── ChartWithAdjustingPointer.tsx │ ├── ChartWithPointer.tsx │ ├── DataSetSteppedChart.tsx │ ├── FocusedIndex.tsx │ ├── GradientLineAndLabel.tsx │ ├── HighlightedRange.tsx │ ├── LineChartEndReached.tsx │ ├── LineChartTwo.tsx │ ├── OuterPointerLegend.tsx │ ├── PopulationChart.tsx │ ├── ScrollingChartWithPointer.tsx │ ├── SecondaryLineChart.tsx │ ├── SecondaryLineChartFromDataSet.tsx │ ├── Segmented.tsx │ ├── SegmentedDataSet.tsx │ ├── SegmentedDataSetCurved.tsx │ ├── SimpleBlueLine.tsx │ └── SimpleBlueLineWithGivenNumberOfVerticalLines.tsx ├── PieChart │ ├── BothSideFocusPie.tsx │ ├── InwardFocusPie.tsx │ ├── PieChartFocusOnPress.tsx │ ├── PieSingleData.tsx │ ├── PieWithZero.tsx │ ├── ProgressPie.tsx │ ├── SimplePie.tsx │ ├── SplitPie.tsx │ └── ThreeDPie.tsx ├── RadarChart │ └── MultipleLineLabel.tsx ├── assets │ └── eye.png ├── audience-requested-charts │ ├── ClickToChangeBarColor.tsx │ ├── FocusOnPress.tsx │ ├── Mgan.tsx │ ├── MultiSegmented.tsx │ ├── OnlyLine.tsx │ ├── PieFocus.tsx │ ├── SecondaryLineBar.tsx │ ├── animOnDataChange.tsx │ ├── audn.tsx │ ├── barLineSeparateData.tsx │ ├── highlightXaxis.tsx │ ├── multiPointer.tsx │ └── triangularBars.tsx ├── awesome-charts │ └── AutoScrollLine.tsx ├── criticalReview.tsx └── index.tsx ├── index.js ├── ios ├── .xcode.env ├── GiftedCharts.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── GiftedCharts.xcscheme ├── GiftedCharts.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── GiftedCharts │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── GiftedChartsTests │ ├── GiftedChartsTests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── jest.config.js ├── jestSetup.js ├── metro.config.js ├── package.json ├── release-notes └── release-notes.md ├── src ├── BarChart │ ├── Animated2DWithGradient.tsx │ ├── RenderBars.tsx │ ├── RenderStackBars.tsx │ ├── index.tsx │ └── styles.tsx ├── Components │ ├── AnimatedThreeDBar │ │ ├── index.tsx │ │ └── styles.tsx │ ├── BarAndLineChartsWrapper │ │ ├── index.tsx │ │ ├── renderHorizSections.tsx │ │ ├── renderLineInBarChart │ │ │ ├── index.tsx │ │ │ ├── renderDataPoints.tsx │ │ │ ├── renderSpecificDataPoints.tsx │ │ │ └── renderSpecificVerticalLines.tsx │ │ └── renderVerticalLines.tsx │ ├── BarSpecificComponents │ │ ├── barBackgroundPattern.tsx │ │ ├── cap.tsx │ │ └── tooltip.tsx │ ├── Rotatable.tsx │ ├── common │ │ ├── LinearGradient.tsx │ │ ├── Pointer.tsx │ │ └── StripAndLabel.tsx │ └── lineSvg.tsx ├── LineChart │ ├── LineChartBicolor.tsx │ ├── index.tsx │ └── styles.tsx ├── PieChart │ ├── index.tsx │ └── main.tsx ├── PieChartPro │ └── index.tsx ├── PopulationPyramid │ └── index.tsx ├── RadarChart │ └── index.tsx ├── index.tsx ├── todos.md └── utils │ └── index.ts └── tsconfig.json /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/App.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/README.md -------------------------------------------------------------------------------- /TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/TESTS.md -------------------------------------------------------------------------------- /__tests__/BarChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/__tests__/BarChart.test.tsx -------------------------------------------------------------------------------- /__tests__/LineChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/__tests__/LineChart.test.tsx -------------------------------------------------------------------------------- /__tests__/PieChart.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/__tests__/PieChart.test.tsx -------------------------------------------------------------------------------- /__tests__/TestCases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/__tests__/TestCases.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/BarChart.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/__tests__/__snapshots__/BarChart.test.tsx.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/LineChart.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/__tests__/__snapshots__/LineChart.test.tsx.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/PieChart.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/__tests__/__snapshots__/PieChart.test.tsx.snap -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/giftedcharts/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/debug/java/com/giftedcharts/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/giftedcharts/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/java/com/giftedcharts/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/giftedcharts/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/java/com/giftedcharts/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/babel.config.js -------------------------------------------------------------------------------- /demos/altBars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/altBars.svg -------------------------------------------------------------------------------- /demos/animatedDataLine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/animatedDataLine.gif -------------------------------------------------------------------------------- /demos/arrowBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/arrowBase.png -------------------------------------------------------------------------------- /demos/arrowProps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/arrowProps.png -------------------------------------------------------------------------------- /demos/barLabelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/barLabelled.png -------------------------------------------------------------------------------- /demos/barPairs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/barPairs.svg -------------------------------------------------------------------------------- /demos/bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/bars.png -------------------------------------------------------------------------------- /demos/blues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/blues.png -------------------------------------------------------------------------------- /demos/cappedCombined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/cappedCombined.png -------------------------------------------------------------------------------- /demos/crossHair.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/crossHair.gif -------------------------------------------------------------------------------- /demos/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/discord.png -------------------------------------------------------------------------------- /demos/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/favicon.png -------------------------------------------------------------------------------- /demos/focusPoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/focusPoint.gif -------------------------------------------------------------------------------- /demos/gitLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/gitLogo.png -------------------------------------------------------------------------------- /demos/inward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/inward.png -------------------------------------------------------------------------------- /demos/lineArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/lineArea.png -------------------------------------------------------------------------------- /demos/lineArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/lineArrow.png -------------------------------------------------------------------------------- /demos/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/mid.png -------------------------------------------------------------------------------- /demos/movingBars.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/movingBars.gif -------------------------------------------------------------------------------- /demos/multiColorY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/multiColorY.png -------------------------------------------------------------------------------- /demos/npmIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/npmIcon.png -------------------------------------------------------------------------------- /demos/onBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/onBorder.png -------------------------------------------------------------------------------- /demos/outward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/outward.png -------------------------------------------------------------------------------- /demos/pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/pie.png -------------------------------------------------------------------------------- /demos/pieExt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/pieExt.png -------------------------------------------------------------------------------- /demos/pielabbelled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/pielabbelled.svg -------------------------------------------------------------------------------- /demos/ppnLabelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/ppnLabelled.png -------------------------------------------------------------------------------- /demos/pyrLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/pyrLarge.png -------------------------------------------------------------------------------- /demos/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/radar.png -------------------------------------------------------------------------------- /demos/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/rainbow.png -------------------------------------------------------------------------------- /demos/redditLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/redditLogo.png -------------------------------------------------------------------------------- /demos/rotate3D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/rotate3D.gif -------------------------------------------------------------------------------- /demos/rotatePie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/rotatePie.gif -------------------------------------------------------------------------------- /demos/scrollLine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/scrollLine.gif -------------------------------------------------------------------------------- /demos/stackHighlight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/stackHighlight.gif -------------------------------------------------------------------------------- /demos/stackOverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/stackOverflow.png -------------------------------------------------------------------------------- /demos/stackdesc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/stackdesc.png -------------------------------------------------------------------------------- /demos/stacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/stacks.png -------------------------------------------------------------------------------- /demos/strips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/demos/strips.png -------------------------------------------------------------------------------- /docs/BarChart/BarChartProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/BarChart/BarChartProps.md -------------------------------------------------------------------------------- /docs/LineChart/LineChartBicolorProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/LineChart/LineChartBicolorProps.md -------------------------------------------------------------------------------- /docs/LineChart/LineChartProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/LineChart/LineChartProps.md -------------------------------------------------------------------------------- /docs/PieChart/PieChartProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/PieChart/PieChartProps.md -------------------------------------------------------------------------------- /docs/PopulationPyramid/PopulationPyramid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/PopulationPyramid/PopulationPyramid.md -------------------------------------------------------------------------------- /docs/RadarChart/RadarChartProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/RadarChart/RadarChartProps.md -------------------------------------------------------------------------------- /docs/dev/BarChart/BarChart.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/dev/BarChart/BarChart.drawio.svg -------------------------------------------------------------------------------- /docs/dev/BarChart/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/dev/BarChart/index.md -------------------------------------------------------------------------------- /docs/dev/LineChart/Focusing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/dev/LineChart/Focusing.md -------------------------------------------------------------------------------- /docs/dev/LineChart/LineChart.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/dev/LineChart/LineChart.drawio.svg -------------------------------------------------------------------------------- /docs/dev/LineChart/MultiLine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/dev/LineChart/MultiLine.md -------------------------------------------------------------------------------- /docs/dev/LineChart/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/dev/LineChart/index.md -------------------------------------------------------------------------------- /docs/dev/PieChart/index.md: -------------------------------------------------------------------------------- 1 | # Pie charts architecture -------------------------------------------------------------------------------- /docs/dev/gifted-charts-architecture.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/dev/gifted-charts-architecture.drawio.svg -------------------------------------------------------------------------------- /docs/dev/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/dev/index.md -------------------------------------------------------------------------------- /docs/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/docs/docs.md -------------------------------------------------------------------------------- /examples/BarChart/BarChartWithGivenNumberOfVerticalLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/BarChartWithGivenNumberOfVerticalLines.tsx -------------------------------------------------------------------------------- /examples/BarChart/BarPairWithLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/BarPairWithLine.tsx -------------------------------------------------------------------------------- /examples/BarChart/BarThreeD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/BarThreeD.tsx -------------------------------------------------------------------------------- /examples/BarChart/BarWithGradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/BarWithGradient.tsx -------------------------------------------------------------------------------- /examples/BarChart/CappedBars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/CappedBars.tsx -------------------------------------------------------------------------------- /examples/BarChart/RoundStackBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/RoundStackBar.tsx -------------------------------------------------------------------------------- /examples/BarChart/ShiftXaxisLabels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/ShiftXaxisLabels.tsx -------------------------------------------------------------------------------- /examples/BarChart/SimpleBarAnimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/SimpleBarAnimated.tsx -------------------------------------------------------------------------------- /examples/BarChart/SimpleBarsEndReached.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/SimpleBarsEndReached.tsx -------------------------------------------------------------------------------- /examples/BarChart/SimpleBlueBars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/SimpleBlueBars.tsx -------------------------------------------------------------------------------- /examples/BarChart/SimpleBlueBarsVerticalLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/SimpleBlueBarsVerticalLines.tsx -------------------------------------------------------------------------------- /examples/BarChart/StackPairWithPattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/StackPairWithPattern.tsx -------------------------------------------------------------------------------- /examples/BarChart/StackWithNegative.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/BarChart/StackWithNegative.tsx -------------------------------------------------------------------------------- /examples/LineChart/AnimatedArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/AnimatedArea.tsx -------------------------------------------------------------------------------- /examples/LineChart/AreaChartDynamicData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/AreaChartDynamicData.tsx -------------------------------------------------------------------------------- /examples/LineChart/AreaTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/AreaTwo.tsx -------------------------------------------------------------------------------- /examples/LineChart/BiColorAreaChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/BiColorAreaChart.tsx -------------------------------------------------------------------------------- /examples/LineChart/CaloriesBurnt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/CaloriesBurnt.tsx -------------------------------------------------------------------------------- /examples/LineChart/ChartWithAdjustingPointer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/ChartWithAdjustingPointer.tsx -------------------------------------------------------------------------------- /examples/LineChart/ChartWithPointer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/ChartWithPointer.tsx -------------------------------------------------------------------------------- /examples/LineChart/DataSetSteppedChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/DataSetSteppedChart.tsx -------------------------------------------------------------------------------- /examples/LineChart/FocusedIndex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/FocusedIndex.tsx -------------------------------------------------------------------------------- /examples/LineChart/GradientLineAndLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/GradientLineAndLabel.tsx -------------------------------------------------------------------------------- /examples/LineChart/HighlightedRange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/HighlightedRange.tsx -------------------------------------------------------------------------------- /examples/LineChart/LineChartEndReached.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/LineChartEndReached.tsx -------------------------------------------------------------------------------- /examples/LineChart/LineChartTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/LineChartTwo.tsx -------------------------------------------------------------------------------- /examples/LineChart/OuterPointerLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/OuterPointerLegend.tsx -------------------------------------------------------------------------------- /examples/LineChart/PopulationChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/PopulationChart.tsx -------------------------------------------------------------------------------- /examples/LineChart/ScrollingChartWithPointer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/ScrollingChartWithPointer.tsx -------------------------------------------------------------------------------- /examples/LineChart/SecondaryLineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/SecondaryLineChart.tsx -------------------------------------------------------------------------------- /examples/LineChart/SecondaryLineChartFromDataSet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/SecondaryLineChartFromDataSet.tsx -------------------------------------------------------------------------------- /examples/LineChart/Segmented.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/Segmented.tsx -------------------------------------------------------------------------------- /examples/LineChart/SegmentedDataSet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/SegmentedDataSet.tsx -------------------------------------------------------------------------------- /examples/LineChart/SegmentedDataSetCurved.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/SegmentedDataSetCurved.tsx -------------------------------------------------------------------------------- /examples/LineChart/SimpleBlueLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/SimpleBlueLine.tsx -------------------------------------------------------------------------------- /examples/LineChart/SimpleBlueLineWithGivenNumberOfVerticalLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/LineChart/SimpleBlueLineWithGivenNumberOfVerticalLines.tsx -------------------------------------------------------------------------------- /examples/PieChart/BothSideFocusPie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/PieChart/BothSideFocusPie.tsx -------------------------------------------------------------------------------- /examples/PieChart/InwardFocusPie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/PieChart/InwardFocusPie.tsx -------------------------------------------------------------------------------- /examples/PieChart/PieChartFocusOnPress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/PieChart/PieChartFocusOnPress.tsx -------------------------------------------------------------------------------- /examples/PieChart/PieSingleData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/PieChart/PieSingleData.tsx -------------------------------------------------------------------------------- /examples/PieChart/PieWithZero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/PieChart/PieWithZero.tsx -------------------------------------------------------------------------------- /examples/PieChart/ProgressPie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/PieChart/ProgressPie.tsx -------------------------------------------------------------------------------- /examples/PieChart/SimplePie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/PieChart/SimplePie.tsx -------------------------------------------------------------------------------- /examples/PieChart/SplitPie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/PieChart/SplitPie.tsx -------------------------------------------------------------------------------- /examples/PieChart/ThreeDPie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/PieChart/ThreeDPie.tsx -------------------------------------------------------------------------------- /examples/RadarChart/MultipleLineLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/RadarChart/MultipleLineLabel.tsx -------------------------------------------------------------------------------- /examples/assets/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/assets/eye.png -------------------------------------------------------------------------------- /examples/audience-requested-charts/ClickToChangeBarColor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/ClickToChangeBarColor.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/FocusOnPress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/FocusOnPress.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/Mgan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/Mgan.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/MultiSegmented.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/MultiSegmented.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/OnlyLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/OnlyLine.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/PieFocus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/PieFocus.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/SecondaryLineBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/SecondaryLineBar.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/animOnDataChange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/animOnDataChange.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/audn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/audn.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/barLineSeparateData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/barLineSeparateData.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/highlightXaxis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/highlightXaxis.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/multiPointer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/multiPointer.tsx -------------------------------------------------------------------------------- /examples/audience-requested-charts/triangularBars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/audience-requested-charts/triangularBars.tsx -------------------------------------------------------------------------------- /examples/awesome-charts/AutoScrollLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/awesome-charts/AutoScrollLine.tsx -------------------------------------------------------------------------------- /examples/criticalReview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/criticalReview.tsx -------------------------------------------------------------------------------- /examples/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/examples/index.tsx -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- 1 | export NODE_BINARY=$(command -v node) 2 | -------------------------------------------------------------------------------- /ios/GiftedCharts.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedCharts.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/GiftedCharts.xcodeproj/xcshareddata/xcschemes/GiftedCharts.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedCharts.xcodeproj/xcshareddata/xcschemes/GiftedCharts.xcscheme -------------------------------------------------------------------------------- /ios/GiftedCharts.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedCharts.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/GiftedCharts.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedCharts.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/GiftedCharts/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedCharts/AppDelegate.h -------------------------------------------------------------------------------- /ios/GiftedCharts/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedCharts/AppDelegate.m -------------------------------------------------------------------------------- /ios/GiftedCharts/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedCharts/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/GiftedCharts/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedCharts/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/GiftedCharts/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedCharts/Info.plist -------------------------------------------------------------------------------- /ios/GiftedCharts/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedCharts/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/GiftedCharts/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedCharts/main.m -------------------------------------------------------------------------------- /ios/GiftedChartsTests/GiftedChartsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedChartsTests/GiftedChartsTests.m -------------------------------------------------------------------------------- /ios/GiftedChartsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/GiftedChartsTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/jest.config.js -------------------------------------------------------------------------------- /jestSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/jestSetup.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/package.json -------------------------------------------------------------------------------- /release-notes/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/release-notes/release-notes.md -------------------------------------------------------------------------------- /src/BarChart/Animated2DWithGradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/BarChart/Animated2DWithGradient.tsx -------------------------------------------------------------------------------- /src/BarChart/RenderBars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/BarChart/RenderBars.tsx -------------------------------------------------------------------------------- /src/BarChart/RenderStackBars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/BarChart/RenderStackBars.tsx -------------------------------------------------------------------------------- /src/BarChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/BarChart/index.tsx -------------------------------------------------------------------------------- /src/BarChart/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/BarChart/styles.tsx -------------------------------------------------------------------------------- /src/Components/AnimatedThreeDBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/AnimatedThreeDBar/index.tsx -------------------------------------------------------------------------------- /src/Components/AnimatedThreeDBar/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/AnimatedThreeDBar/styles.tsx -------------------------------------------------------------------------------- /src/Components/BarAndLineChartsWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/BarAndLineChartsWrapper/index.tsx -------------------------------------------------------------------------------- /src/Components/BarAndLineChartsWrapper/renderHorizSections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/BarAndLineChartsWrapper/renderHorizSections.tsx -------------------------------------------------------------------------------- /src/Components/BarAndLineChartsWrapper/renderLineInBarChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/BarAndLineChartsWrapper/renderLineInBarChart/index.tsx -------------------------------------------------------------------------------- /src/Components/BarAndLineChartsWrapper/renderLineInBarChart/renderDataPoints.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/BarAndLineChartsWrapper/renderLineInBarChart/renderDataPoints.tsx -------------------------------------------------------------------------------- /src/Components/BarAndLineChartsWrapper/renderLineInBarChart/renderSpecificDataPoints.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/BarAndLineChartsWrapper/renderLineInBarChart/renderSpecificDataPoints.tsx -------------------------------------------------------------------------------- /src/Components/BarAndLineChartsWrapper/renderLineInBarChart/renderSpecificVerticalLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/BarAndLineChartsWrapper/renderLineInBarChart/renderSpecificVerticalLines.tsx -------------------------------------------------------------------------------- /src/Components/BarAndLineChartsWrapper/renderVerticalLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/BarAndLineChartsWrapper/renderVerticalLines.tsx -------------------------------------------------------------------------------- /src/Components/BarSpecificComponents/barBackgroundPattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/BarSpecificComponents/barBackgroundPattern.tsx -------------------------------------------------------------------------------- /src/Components/BarSpecificComponents/cap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/BarSpecificComponents/cap.tsx -------------------------------------------------------------------------------- /src/Components/BarSpecificComponents/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/BarSpecificComponents/tooltip.tsx -------------------------------------------------------------------------------- /src/Components/Rotatable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/Rotatable.tsx -------------------------------------------------------------------------------- /src/Components/common/LinearGradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/common/LinearGradient.tsx -------------------------------------------------------------------------------- /src/Components/common/Pointer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/common/Pointer.tsx -------------------------------------------------------------------------------- /src/Components/common/StripAndLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/common/StripAndLabel.tsx -------------------------------------------------------------------------------- /src/Components/lineSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/Components/lineSvg.tsx -------------------------------------------------------------------------------- /src/LineChart/LineChartBicolor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/LineChart/LineChartBicolor.tsx -------------------------------------------------------------------------------- /src/LineChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/LineChart/index.tsx -------------------------------------------------------------------------------- /src/LineChart/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/LineChart/styles.tsx -------------------------------------------------------------------------------- /src/PieChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/PieChart/index.tsx -------------------------------------------------------------------------------- /src/PieChart/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/PieChart/main.tsx -------------------------------------------------------------------------------- /src/PieChartPro/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/PieChartPro/index.tsx -------------------------------------------------------------------------------- /src/PopulationPyramid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/PopulationPyramid/index.tsx -------------------------------------------------------------------------------- /src/RadarChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/RadarChart/index.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/todos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/todos.md -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhinandan-Kushwaha/react-native-gifted-charts/HEAD/tsconfig.json --------------------------------------------------------------------------------