All Projects → wuxudong → React Native Charts Wrapper

wuxudong / React Native Charts Wrapper

a react native charts wrapper (support android & iOS)

Programming Languages

java
68154 projects - #9 most used programming language
swift
15916 projects
javascript
184084 projects - #8 most used programming language
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to React Native Charts Wrapper

Uplot
📈 A small, fast chart for time series, lines, areas, ohlc & bars
Stars: ✭ 6,808 (+222.5%)
Mutual labels:  chart, charts
Pure Vue Chart
Simple and lightweight vue chart component without using chart library dependencies
Stars: ✭ 50 (-97.63%)
Mutual labels:  chart, charts
Amcharts4
The most advanced amCharts charting library for JavaScript and TypeScript apps.
Stars: ✭ 907 (-57.03%)
Mutual labels:  chart, charts
Chartify
📊 📈 📉 React.js plugin for building charts using CSS
Stars: ✭ 671 (-68.21%)
Mutual labels:  chart, charts
Devextreme
HTML5 JavaScript Component Suite for Responsive Web Development
Stars: ✭ 1,385 (-34.39%)
Mutual labels:  chart, charts
Chartkick.py
Create beautiful Javascript charts with minimal code
Stars: ✭ 695 (-67.08%)
Mutual labels:  chart, charts
Mpandroidchart
A powerful 🚀 Android chart view / graph view library, supporting line- bar- pie- radar- bubble- and candlestick charts as well as scaling, panning and animations.
Stars: ✭ 34,377 (+1528.47%)
Mutual labels:  chart, mpandroidchart
Aachartcore
📈📊☕️☕️☕️An elegant modern declarative data visualization chart framework for Android. Extremely powerful, supports line, spline, area, areaspline, column, bar, pie, scatter, angular gauges, arearange, areasplinerange, columnrange, bubble, box plot, error bars, funnel, waterfall and polar chart types.极其精美而又强大的 Android 数据可视化图表框架,支持柱状图、条形图、折线图、曲线图、折线填充图、曲线填充图、气泡图、扇形图、环形图、散点图、雷达图、混合图等各种类型的多达几十种的信息图图表,完全满足工作所需.
Stars: ✭ 424 (-79.91%)
Mutual labels:  chart, charts
Arcchartview
Arc Chart View (Draw Creative Statistic Arc Charts)
Stars: ✭ 96 (-95.45%)
Mutual labels:  chart, charts
Ac D3
Javascript Library for building Audiovisual Charts in D3
Stars: ✭ 76 (-96.4%)
Mutual labels:  chart, charts
Jhchart
Stars: ✭ 593 (-71.91%)
Mutual labels:  chart, charts
Orcharts
饼状图、环形图、扇形图、曲线图、折线图
Stars: ✭ 125 (-94.08%)
Mutual labels:  chart, charts
Clip
Create charts from the command line
Stars: ✭ 5,111 (+142.11%)
Mutual labels:  chart, charts
Ggcharts
可以高度自定义的图表框架。柱状图、折线图、雷达图、饼图、K线图、分时图。
Stars: ✭ 713 (-66.22%)
Mutual labels:  chart, charts
Wx Charts
微信小程序图表charts组件,Charts for WeChat Mini Program
Stars: ✭ 4,633 (+119.47%)
Mutual labels:  chart, charts
Reasonbizcharts
ReasonML binding for BizCharts https://bizcharts.net/products/bizCharts/demo
Stars: ✭ 23 (-98.91%)
Mutual labels:  chart, charts
Hycharts
柱状图、折/曲线图、K线图(主图、交易量图、辅助图), 图与图可以自由组合, 支持分页加载数据 -----> 低内存、低耗电、滑动缩放顺滑
Stars: ✭ 394 (-81.34%)
Mutual labels:  chart, charts
Flutter echarts
A Flutter widget to use Apache ECharts (incubating) in a reactive way.
Stars: ✭ 420 (-80.1%)
Mutual labels:  chart, charts
Unity Ugui Xcharts
A charting and data visualization library for Unity. 一款基于UGUI的数据可视化图表插件。
Stars: ✭ 1,086 (-48.56%)
Mutual labels:  chart, charts
Anychart Android
AnyChart Android Chart is an amazing data visualization library for easily creating interactive charts in Android apps. It runs on API 19+ (Android 4.4) and features dozens of built-in chart types.
Stars: ✭ 1,762 (-16.53%)
Mutual labels:  chart, charts

React Native Charts Wrapper

This library is React Native wrapper of popular Native charting library MPAndroidChart and Charts

Introduction

Inspired by react-native-mp-android-chart and react-native-ios-charts

React Native Charts Wrapper is built on MPAndroidChart(v3.1.0) & Charts(v3.3.0), support both android & iOS.

ANDROID

IOS

Supported Chart Type

  • Bar(Stack,Group)
  • Line
  • Scatter
  • Bubble
  • Pie
  • Radar
  • Combined
  • CandleStick

Setup

A step by step tutorial to set up a new project can be found here

Usage

There are 8 supported charts with many configuration options. Almost all configuration available in base MPAndroidChart library are available through this wrapper. More details on available configuration can be found on their wiki.

Example of how charts are used and how to apply configuration can be found in example.

Convention

Android and IOS have different convention:

  1. color's alpha in android is 0-255, in ios is 0-1
  2. percent in android is 0-100, in ios is 0-1
  3. animation.duration in MpAndroidChart is milliseconds, in Charts is seconds.
  4. their enum case name is always different, for example XAxisPosition, in MpAndroidChart is BOTH_SIDED, in Charts is bothSided.

Here we use android Convention

Always use processColor to set color

Data Format

  • Complete Form

      data : {
          ...
          dataSets: [
              {
                  values: [
                      {x: 5, y: 90},
                      {x: 10, y: 130},
                      {x: 50, y: 2000, marker: "eat more"},
                      {x: 80, y: 9000, marker: "eat less"}
                  ]
              },
              ...
          ]
      }Ï
    

marker is optional, if x is omitted, index will be used.

  • Simplified Form

      data: {
          ...
          dataSets: [
              {
                  values: [5, 40, 77, 81, 43]
              },
              ....
          ]
      }
    

index will used as x.

check Example->TimeSeriesLineChart for details

Supported Callbacks

onSelect

Triggered when a chart value is selected. The event passed back will include the coordinates of the touch as well as the data (including marker label) selected.

onChange

Triggered for various supported events on each platform. Due to the different nature of gesture handling on each platform as well as the different implementations of the underlying chart libraries, the same events are not supported on every platform. For full details on the supported events, see the table below:

Event Name Description iOS Android
chartScaled When a chart is scaled/zoomed via a pinch zoom gesture.
chartTranslated When a chart is moved/translated via a drag gesture.
chartPanEnd When a chart pan gesture ends.
chartGestureStart When a chart gesture starts.
chartGestureEnd When a chart gesture ends.
chartLongPress When a chart is long pressed.
chartSingleTap When a chart is single tapped.
chartFling When a chart recieves a fling gesture.
doubleTapped When a chart is double tapped

check Example->MultipleChart for details.

Direct Function Call

Support direct function call.

You can use chart.moveViewToX(...) or other functions directly.

check Example->MovingWindowChart for details.

supported functions:

  1. highlights([...])

    it can be used to highlight entries programmatically, or clear already highlighted entries if you pass empty array to it: highlights([])

  2. moveViewTo/moveViewToX/moveViewToAnimated/centerViewTo/centerViewToAnimated

  3. fitScreen

  4. setDataAndLockIndex

    It will rescale and move to the begining of your data when new data is set by default, this is not expected when you want to load more data when user scrolls.
    setDataAndLockIndex will remain x/y/zoom when you load more data.
    Because of the implementation of MpAndroidChart, if the action of setDataAndLockIndex is triggered by user dragging,
    then the range of new data (xMax - xMin) should be equal to original data(this basicly means size of new data equals to old one), otherwise the calculation of position transition won't be accurate,
    use may find the chart suddenly blink to another position.
    This restriction only exists in android, in iOS, we have no such problem.

    You can check the example InfiniteScrollLineChartScreen.

Special properties

Several extra properties are introduced:

  1. group&identifier&syncX&syncY

    They are useful when you want to implement linkage charts.

    Charts will sync its operation to other charts in the same group. All these sync jobs are done at native side.

    You can check the example LinkageChartScreen.

    Another way of syncing charts is to use onChange, but the performace is poor. You can check the example MultipleChartScreen.

    There is a stock kLine chart in example, it combines group&identifier and setDataAndLockIndex together.

Custom Marker Content

Support custom marker content.

check Example->TimeSeriesLineChart for details.

Notice

size of chart

you can set chart to fixed width & height, or flex:1

License

The MIT License

Copyright (c) 2017 wuxudong

Copyright (c) 2016 Martin Skec

Copyright (c) 2016 Jose E. Padilla

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].