I'm trying to make a donut chart using Highchart library in the react application.
What I want to achieve is like this image.
I want to add customised value or paragraph inside the donut chart. Is it possible to add some customised value or paragraph outside of DonutChart component?
Something like this;
import DonutChart from 'DonutChart.js'
class Chart extends React.component{
render(){
return(
<div className="donutchart-wrapper">
<DonutChart />
<!---the following should be inside the Donut Chart --->
<div>
1/3
</div>
</div>
)
}