React component for sunburst chart implementation using D3
npm install --save reactd3sunburst
import React, { Component } from 'react'
import Sunburst from 'reactd3sunburst'
class App extends Component {
render () {
const jsonData = getDataAsJson()
return (
<Sunburst data={jsonData}/>
)
}
}
MIT © roeezolantz
This project is a fork of @vkbansal's sunburst chart