UNPKG

rn_supermap

Version:

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

37 lines (30 loc) 1.04 kB
/********************************************************************************* Copyright © SuperMap. All rights reserved. Author: Zihao Wang E-mail: pridehao@gmail.com Description:饼状图。 **********************************************************************************/ import PropTypes from 'prop-types'; import React, { Component } from 'react'; import { requireNativeComponent, ViewPropTypes, } from 'react-native'; class SMPieChartView extends Component{ static propTypes = { title:PropTypes.string, textSize:PropTypes.number, radious:PropTypes.number, center:PropTypes.array, geoId:PropTypes.number, textColor:PropTypes.array, chartDatas:PropTypes.array, ...ViewPropTypes, }; render(){ var props = {...this.props}; return <RCTPieChartView {...props} ref="PieChartView"></RCTPieChartView> } } var RCTPieChartView = requireNativeComponent('RCTPieChartView',SMPieChartView); export default SMPieChartView;