/svg-react-sample

the sample repository to draw svg with React.

Primary LanguageTypeScript

svg-react-sample

CircleCI

the sample project to create svg with React.

ex1. Heatmap

screenshot 2019-12-06 3 49 55

Usage

Import Heatmap component and give anguments like below.

<Heatmap
  margin={{top: 10, left: 10}}
  size={{width: 100, height: 200}}
  data={[[10,10,10,5,10],[12,12,13,4,12]]}
  max={50}
/>

Run server

yarn start

and open 'http://localhost:3000'

Run Test

yarn test