react-fishbone-chart
v0.1.4
Published
fishbone chart for react
Downloads
23
Readme
鱼骨图(fishbone chart for react)
install
npm i react-fishbone-chart
how to use
import React from 'react';
import {FishboneChart} from 'react-fishbone-chart'
const initData = {
data: ['a','b','c','d','e','f','g','h','k'],
speed: 28,
}
const App = () => {
return (
<div style={{width:"600px", height:"600px"}}>
<FishboneChart option={initData}/>
</div>
);
};
export default App;