import React from 'react'
import ReactApexChart from 'react-apexcharts'
import './styles.css'
const ApexChart = () => {
const [state, setState] = React.useState({
series: [
{
data: [
{
x: 'Engineering',
y: 46,
children: [
{ x: 'Platform', y: 24 },
{ x: 'Product', y: 14 },
{ x: 'QA', y: 8 },
],
},
{
x: 'Sales',
y: 28,
children: [
{ x: 'Field', y: 18 },
{ x: 'Inside', y: 10 },
],
},
{
x: 'Marketing',
y: 16,
children: [
{ x: 'Brand', y: 9 },
{ x: 'Growth', y: 7 },
],
},
{
x: 'Operations',
y: 10,
children: [
{ x: 'People', y: 6 },
{ x: 'Finance', y: 4 },
],
},
],
},
],
options: {
chart: {
type: 'sunburst',
height: 360,
},
colors: ['#6366F1', '#0EA5E9', '#22C55E', '#F97316'],
legend: {
position: 'bottom',
},
title: {
text: 'Annual budget allocation',
align: 'left',
},
plotOptions: {
sunburst: {
startAngle: -90,
endAngle: 90,
innerSize: '30%',
borderRadius: 4,
spacing: 2,
},
},
stroke: {
width: 1,
colors: ['#fff'],
},
},
})
return (
<div>
<div id="chart">
<ReactApexChart
options={state.options}
series={state.series}
type="sunburst"
height={360}
/>
</div>
</div>
)
}
export default ApexChart