native react 折线图_react-native 使用 F2实现折线图

前言

最近工作入坑了react-native,有实现折线图的需求,使用了阿里的antv/f2可视化库。

方案介绍:

react-native-webview

antv/f2

大概思路:

使用webview加载本地html文件,通过injectJavaScript加载js脚本

步骤

新建f2chart.html,文件较大,文件地址:f2chart.html

在ios中, 将此文件与组件放在同一目录,在andirod中,手动将次文件放置在android/app/src/main/assets/f2chart.html ,如果没有该文件夹,手动创建一个。

新建f2Chart组件

import React, { PureComponent, createRef } from 'react';

import { StyleSheet, Platform } from 'react-native';

import { WebView as RNWebView } from 'react-native-webview';

import renderChart, { changeChartData } from './renderChart';

const source = Platform.select({

// eslint-disable-next-line global-require

ios: require('./f2chart.html'),

android: { uri: 'file:///android_asset/f2chart.html' },

});

export default class Chart extends PureComponent {

constructor(props) {

super(props);

this.chart = createRef();

}

// eslint-disable-next-line react/no-deprecated

componentWillReceiveProps(nextProps) {

const { data } = this.props;

if (data !== nextProps.data) {

this.reload();

this.chart.current.injectJavaScript(changeChartData(nextProps));

}

}

update = data => {};

onMessage = event => {

const {

nativeEvent: { data },

} = event;

const { onChange } = this.props;

const tooltip = JSON.parse(data);

onChange(tooltip);

};

reload = () => {

this.chart.current.reload();

};

onLoadEnd = () => {

setTimeout(() => {

this.chart.current.injectJavaScript(renderChart(this.props));

}, 10);

};

render() {

const { data, ...props } = this.props;

return (

scrollEnabled={false}

javaScriptEnabled

ref={this.chart}

style={styles.webView}

injectedJavaScript={renderChart(this.props)}

source={source}

onLoadEnd={this.onLoadEnd}

originWhitelist={['*']}

onMessage={this.onMessage}

{...props}

/>

);

}

}

const styles = StyleSheet.create({

webView: {

flex: 1,

backgroundColor: 'transparent',

},

});

这里需要注意的是,在最新版本的react-native中已经将WebView脱离出来了,所以需要安装react-native-webview

yarn add react-native-webview -S

3.新建renderChart.js

export default function renderChart(props) {

const { data = [] } = props;

const chartData = data.map(c => {

return {

...c,

date: formatChartDate(c.date), // 将时间处理成 2020-03-12 12:00:00 格式

};

})

const lastData = chartData[chartData.length - 1];

const script = `

(function(){

const chart = new F2.Chart({

id: 'chart',

pixelRatio: window.devicePixelRatio,

padding: 'auto',

});

chart.source(${JSON.stringify(chartData)}, {

value: {

tickCount: 5,

min: 0,

ticks: [0, 25, 50, 75, 100],

sortable:false

},

date: {

type: 'timeCat',

range: [0, 1],

tickCount: 3,

}

});

chart.tooltip({

showCrosshairs:true,

crosshairsStyle: {

lineDash: [2]

},

alwaysShow:true,

showItemMarker: false,

background: {

radius: 2,

fill: 'rgb(229,35,97)',

padding: [ 2, 6 ]

},

tooltipMarkerStyle: {

fill: '#5B98FF', // 设置 tooltipMarker 的样式

radius: 4,

lineWidth: 2,

stroke: '#d9e5fc',

},

onShow: function(ev) {

const items = ev.items;

const value = items[0].value;

items[0].name = null;

items[0].value = value>0?'+'+value + '元' : '0.00';

}

});

chart.axis('value', {

label: function label(text, index, total) {

const textCfg = {

text

};

return textCfg;

}

});

chart.axis('date', {

label: function label(text, index, total) {

const textArr = text.split('-');

const month = textArr[1];

const textCfg = {

color:'#888B9C',

fontSize:'10',

text:textArr[0]+'年'+parseInt(month)+'月'

};

if (index === 0) {

textCfg.textAlign = 'left';

} else if (index === total - 1) {

textCfg.textAlign = 'right';

}

return textCfg;

}

});

chart.line({

sortable: false

}).position('date*value').shape('smooth')

chart.area({

sortable: false

}).position('date*value').shape('smooth')

chart.render();

const item = ${JSON.stringify(lastData)}

const point = chart.getPosition(item);

chart.showTooltip(point);

})();

`;

return script;

}

4.使用

import F2LineChart from 'F2LineChart'

render(){

return(

)

}

关于

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值