UNPKG

rn_supermap

Version:

rn_supermap 一款基于React-Native框架的移动应用开发工具。基于该开发工具,用户可以使用JavaScript开发语言,开发出在Android和IOS操作系统下运行的原生移动GIS应用,入门门槛低,一次开发,处处运行。

32 lines (26 loc) 854 B
import PropTypes from 'prop-types'; import React, { Component } from 'react'; import { requireNativeComponent, ViewPropTypes, } from 'react-native'; class SMBarChartView extends Component{ static propTypes = { data:PropTypes.array, title:PropTypes.string, textSize:PropTypes.number, isValueAlongXAxis:PropTypes.bool, axisTitleSize:PropTypes.number, axisLableSize:PropTypes.number, xAxisTitle:PropTypes.string, yAxisTitle:PropTypes.string, hightLightColor:PropTypes.array, ...ViewPropTypes, }; render(){ var props = {...this.props}; return <RCTBarChartView {...props} ref="BarChartView"></RCTBarChartView> } } var RCTBarChartView = requireNativeComponent('RCTBarChartView',SMBarChartView); export default RCTBarChartView;