Code Monkey home page Code Monkey logo

react-echarts-wrapper's Introduction

echarts-wrapper

An Echarts wrapper component for react

Install

npm i echarts-wrapper

or

yarn add echarts-wrapper

Usage

First import into the project:

import Echarts from 'echarts-wrapper';

Used is JSX:

 <Echarts
      options={this.state.option}
      loading={this.state.loading}
      onChartsReady={this.getInstance}
    />

When you change the value of option by setState, it is equivalent to executing 'echarts.setOption',you can display dynamic data by constantly changing the option and causing redrawing.'loading' is the same way.

You can get the object instance of echarts by 'onChartsReady',then

getInstance(instance){
    console.log('instance',instance);
  }

opts:

Additional parameters. There are several options below:

devicePixelRatio

Device pixel ratio, the browser value of window.devicePixelRatio is taken by default.

Renderer

Renderer that supports 'canvas' or 'svg'. See Rendering with Canvas or SVG.

Width

The instance width can be explicitly specified in pixels. If the value passed in is null/undefined/'auto', it means that the width of the dom (instance container) is automatically taken.

Height

The instance height can be explicitly specified in pixels. If the value passed in is null/undefined/'auto', it means that the height of the dom (instance container) is automatically taken.

API

Parameter Explain Type default
options Configuration items and data for ECh-arts Object -
notMerge Optional, whether not to merge with the previously set options. Boolean false
loading Whether to display the loading animation effect Boolean false
onChartsReady Get the object instance of echarts function -
theme Change global style.Built in two sets of themes, 'light' and 'dark'.See the official documentation for details. String -
opts Additional parameters Object -
lazyUpdate Optional, whether to update the chart immediately after setting the option, the default is false, that is, update immediately Boolean false
silent Optional, it prevents the event from being thrown when calling setOption. The default is false, that is, the event is thrown. Boolean false

react-echarts-wrapper's People

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.