React Component for drawing hexbin plot using d3
npm install react-d3-hexbin
> An easily customisable, responsive react hexbin plot component

npm i react-d3-hexbin --save or yarn add react-d3-hexbin
```
import React, { Component } from 'react';
import { randomNormal } from 'd3-random';
import { range } from 'd3-array';
import HexbinPlot from 'react-d3-hexbin';
class App extends Component {
render() {
const randomX = randomNormal(0, 1);
const randomY = randomNormal(0, 1);
const data = range(20000).map(() => [randomX(), randomY()] );
return (
export default App;
``
* points
* width
* height
* radius
* defaultColor
* title
* xLabel
* yLabel
* colorFilters
* horizontalLines
* verticalLines
* grid
* filter
https://react-d3-hexbin.firebaseapp.com/
To run demo on your own computer:
* Clone this repository
* npm installnpm start`
*
* Visit http://localhost:3000/
* Hobin Ryu (hobincar@kaist.ac.kr)
Copyright ©2017 Deargen Released under the MIT license.