react-native-echarts-liquidfill

1.0.1 • Public • Published

react-native-echarts-liquidfill

NPM Version NPM Version

English 简体中文

echarts-liquidfill based on echarts.

Getting started

$ npm install react-native-echarts-liquidfill --save

Rely

$ npm install react-native-webview --save

Usage

1.Base Usage

iOS基本使用androd基本使用

import React from 'react';
import { View } from 'react-native';
import RNEChartsLiquidFill from 'react-native-echarts-liquidfill';
export default function ChartsComponent() {
  const pieOption = {
    title: {
      text: '水球图',
      left: 'center'
    },
    series: [
      {
        type: 'liquidFill',
        data: [0.6],
        color: ['#afb11b'],
        itemStyle: {
          //普通样式
          opacity: 0.6
        },
        emphasis: {
          itemStyle: {
            //悬停样式
            opacity: 0.9
          }
        }
      }
    ]
  };

  return (
    <View style={{ height: 300, paddingTop: 25 }}>
      <RNEChartsLiquidFill height={250} onPress={tt => alert(tt)} option={pieOption} />
    </View>
  );
}

2.More Usage

Please visit Echarts-Gallery

Props

Prop Type Default Description
height number 400 Chart area height
option object null Chart data configuration items, see details:https://echarts.apache.org/zh/option.html#title
backgroundColor string transparent Chart background color
themeName string - There are only six officially available themes:
vintage || dark || macarons || infographic || shine || roma

Method

Method name Params Description
setNewOption option Reassign and render the chart
onPress callbackData Chart click event, callbackData is the clicked data

Readme

Keywords

Package Sidebar

Install

npm i react-native-echarts-liquidfill

Weekly Downloads

9

Version

1.0.1

License

none

Unpacked Size

938 kB

Total Files

16

Last publish

Collaborators

  • supervons