项目作者: shinjayne

项目描述 :
React component of Toast UI Chart
高级语言: JavaScript
项目地址: git://github.com/shinjayne/react-tui-chart.git
创建时间: 2018-03-29T22:45:06Z
项目社区:https://github.com/shinjayne/react-tui-chart

开源协议:

下载


React Toast UI Chart Component

install

  1. yarn add react-tui-chart

usage

  1. import Toast from 'react-tui-chart';
  2. import React from 'react';
  3. const ChartPage = (props)=>{
  4. return (
  5. <Toast
  6. id={"first"}
  7. data=props.data
  8. options=props.options
  9. chartType={"barChart"}
  10. ></Toast>
  11. )
  12. }