react-native-react-native-scichart

1.0.3 • Public • Published

react-native-react-native-scichart

Getting started

$ npm install react-native-react-native-scichart --save

Mostly automatic installation

$ react-native link react-native-react-native-scichart

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-react-native-scichart and add RNReactNativeScichart.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNReactNativeScichart.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNReactNativeScichartPackage; to the imports at the top of the file
  • Add new RNReactNativeScichartPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-react-native-scichart'
    project(':react-native-react-native-scichart').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-react-native-scichart/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-react-native-scichart')
    

Windows

Read it! :D

  1. In Visual Studio add the RNReactNativeScichart.sln in node_modules/react-native-react-native-scichart/windows/RNReactNativeScichart.sln folder to their solution, reference from their app.
  2. Open up your MainPage.cs app
  • Add using React.Native.Scichart.RNReactNativeScichart; to the usings at the top of the file
  • Add new RNReactNativeScichartPackage() to the List<IReactPackage> returned by the Packages method

Usage

import RNReactNativeScichart from 'react-native-react-native-scichart';

// TODO: What to do with the module?
RNReactNativeScichart;

Props

Prop name Description Type Default value Platform
chartData All chart data history array []
tickData New data append to chartData Object {}
showLegend Hide and show legend boolean true
onChartPress Function called when click to chart function none

Example

import RNReactNativeScichart from 'react-native-react-native-scichart';

export function Example() {
  const {listData, tickData} = this.state;
  return (
      <RNReactNativeScichart
        style={{flex: 1}}
        chartData={listData}
        tickData={tickData}
        showLegend={true}
        onChartPress={(event) => {
          console.log('candle positon', event?.nativeEvent?.index);
        }}
      />
  )
}

Readme

Keywords

Package Sidebar

Install

npm i react-native-react-native-scichart

Weekly Downloads

1

Version

1.0.3

License

none

Unpacked Size

2.82 MB

Total Files

182

Last publish

Collaborators

  • huyhai