真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

ReactNative使用百度Echarts顯示圖表的示例代碼

Echarts是百度推出的免費開源的圖表組件,功能豐富,涵蓋各行業(yè)圖表。相信很多同學在網(wǎng)頁端都使用過。今天我就來介紹下在React Native中如何使用Echarts來顯示各種圖表。

我們提供的服務有:成都網(wǎng)站建設、網(wǎng)站建設、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、玉田ssl等。為1000多家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的玉田網(wǎng)站制作公司

首先需要在我們的React Native項目中安裝native-echarts組件,該組件是兼容IOS和安卓雙平臺的。

安裝

npm install native-echarts --save

安裝完成后在node_modules文件夾下會多出一個文件夾叫native-echarts。

目錄結構如下圖所示:

 React Native使用百度Echarts顯示圖表的示例代碼

基礎使用

native-echarts的使用方法基本和網(wǎng)頁端的Echarts使用方法一致。組件主要有三個屬性:

  1. option (object):圖表的相關配置和數(shù)據(jù)。詳見文檔:ECharts Documentation
  2. width (number):圖表的寬度,默認值是外部容器的寬度。
  3. height (number) :圖表的高度,默認值是400。

示例代碼:

import React, { Component } from 'react';
import {
 AppRegistry,
 StyleSheet,
 Text,
 View
} from 'react-native';
import Echarts from 'native-echarts';

export default class app extends Component {
 render() {
  const option = {
   title: {
     text: 'ECharts demo'
   },
   tooltip: {},
   legend: {
     data:['銷量']
   },
   xAxis: {
     data: ["襯衫","羊毛衫","雪紡衫","褲子","高跟鞋","襪子"]
   },
   yAxis: {},
   series: [{
     name: '銷量',
     type: 'bar',
     data: [5, 20, 36, 10, 10, 20]
   }]
  };
  return (
   
  );
 }
}

AppRegistry.registerComponent('app', () => app);

React Native使用百度Echarts顯示圖表的示例代碼

通過上面的代碼我們就可以在React Native里面顯示一個圖表了。但是我們會發(fā)現(xiàn)顯示的字體會偏小。我們需要適配下移動端的字體,我們需要在native-echarts文件下找到tpl.html文件,在head里面增加下面一句代碼:
這樣字體大小就顯示正常了。

進階使用:

在使用圖表時,如果我們需要使用圖表的點擊事件,比如點擊柱狀圖的某個柱子,獲取到該柱子的信息,再跳轉到詳情頁面,這該怎么做呢?組件本身是沒有這個屬性的,需要我們自己修改下代碼,傳遞下消息。具體代碼如下:

首先我們需要在renderChart.js文件中把需要的數(shù)據(jù)注入并傳遞出來(window.postMessage):

import echarts from './echarts.min';
import toString from '../../util/toString';

export default function renderChart(props) {
 const height = props.height || 400;
 const width = props.width || 568;
 return `
  document.getElementById('main').style.height = "${height}px";
  document.getElementById('main').style.width = "${width}px";
  var myChart = echarts.init(document.getElementById('main'));
  myChart.setOption(${toString(props.option)});
  myChart.on('click', function (params) {
   var message = {};
   message.event='click';
   message.seriesName = params.seriesName;
   message.name = params.name;
   window.postMessage(JSON.stringify(message));
 });
 `
}

然后在index.js中做處理(handleMessage):

import React, { Component } from 'react';
import { WebView, View, StyleSheet, Platform } from 'react-native';
import renderChart from './renderChart';
import echarts from './echarts.min';

export default class App extends Component {
 componentWillReceiveProps(nextProps) {
  if(JSON.stringify(nextProps.option) !== JSON.stringify(this.props.option)) {
   this.refs.chart.reload();
  }
 }
 handleMessage = (evt) => {
  const message = JSON.parse(evt.nativeEvent.data)
   this.props.handleMessage(message);
 }
 render() {
  return (
   
    
   
  );
 }
}

最后在使用圖表的頁面中,修改下代碼來接受傳遞過來的消息:

在handleMessage方法中就可以寫自己的邏輯來處理傳遞過來數(shù)據(jù)了。

打包:

如果就這樣打包的話,IOS是可以正常打包并顯示的。但是在android端打包時會出錯。

解決方法:

將index.js中的代碼:source={require('./tpl.html')}修改為:

source= {Platform.OS === 'ios' ? require('./tpl.html') : { uri: 'file:///android_asset/tpl.html' }}

同時將tpl.html文件拷貝到安卓項目下面的app/src/main/assets文件夾中。

在執(zhí)行完react-native bundle命令后,需要手動將資源文件res/drawable-mdpi中生成的tpl.html文件刪除,再執(zhí)行cd android && ./gradlew assembleRelease命令,這樣就能成功打包了。

Q1

當數(shù)據(jù)量比較大的時候,x軸的數(shù)據(jù)不顯示。這個是echarts自己的一個功能,解決辦法是設置xAxis-axisLabel-interval為0即可。

Q2

面積折線圖中面積顏色“不正“,也就是說和設置的顏色對不上。這個可能是react-native-echarts組件封裝的問題,解決辦法是設置areaStyle-normal-shadowColor為'#ffffff',同理可以設置lineStyle等。

Q3

打release包的時候報錯了,
\android\app\src\main\res\drawable-mdpi\node_modules_nativeecharts_src_components_echarts_tpl.html
Error:Error: The file name must end with .xml or .png

原因:

release打包的時候把node_modules_nativeecharts_src_components_echarts_tpl.html打到了drawable下,這是不行的,要放到assets下。

解決辦法是

另外,release版本只能使用uri加載資源,android把tpl.html文件放在android/app/src/main/assets文件里,使用uri:'file:///android_asset/tpl.html'這個地址加載,ios在項目目錄下建個文件夾,把tpl文件放里面去,使用uri:'文件名/tpl'加載。

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


分享題目:ReactNative使用百度Echarts顯示圖表的示例代碼
瀏覽路徑:http://weahome.cn/article/pdpdgs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部