react-d3-pie-chart

1.0.3 • Public • Published

React D3 Pie Chart

React component for rendering pie chart with d3

Getting Started

$ npm i -S react react-dom react-d3-pie-chart

Development

$ npm run demo

Bundling for production

$ npm run bundle

How to Use

Parameters

Parameter Type
data (required) array
colors (optional) array
width (optional) number
height (optional) number
transition (optional) number
renderLabel (optional) function

Basic

import React, { PureComponent } from 'react';
import { render } from 'react-dom';
import fp from 'lodash/fp';
import ReactD3PieChart from '../src';
 
const appRoot = document.getElementById('root');
 
class DemoApp extends PureComponent {
  constructor(props) {
    super(props);
    this.state = {
      data: [
        { label: 'A', value: 10 },
        { label: 'B', value: 22 },
        { label: 'C', value: 5 },
        { label: 'D', value: 0 },
        { label: 'E', value: 8 },
      ],
    };
  }
 
  handleClick = () => {
    const lastData = fp.last(this.state.data);
    const { label } = lastData;
    const newLabel = String.fromCharCode(label.charCodeAt() + 1);
    const newValue = Math.floor(Math.random() * 31);
 
    this.setState({
      data: [
        ...this.state.data,
        { label: newLabel, value: newValue },
      ],
    });
  }
 
  renderLabel = d => `Label is ${d.data.label}`
 
  render() {
    return (
      <main>
        <ReactD3PieChart data={this.state.data} tooltip renderLabel={this.renderLabel} />
        <button onClick={this.handleClick}>Add Data</button>
      </main>
    );
  }
}
 
render(<DemoApp />, appRoot);

Change Log

1.0.0

  • Initial release

1.0.1

  • Migrate webpack v4
  • Fix renderLabel method

1.0.2

  • Fix bug (to not pass the callback in setState)

1.0.3

  • change library target into commonjs

Package Sidebar

Install

npm i react-d3-pie-chart

Weekly Downloads

3

Version

1.0.3

License

MIT

Unpacked Size

338 kB

Total Files

11

Last publish

Collaborators

  • wonism