Hi, I have the following code.
<AccumulationChartComponent background="transparent" >
<AccumulationSeriesCollectionDirective >
<AccumulationSeriesDirective palettes={this.palettes} dataSource={[{ x: 'Labour', y: 90, text: '18%' }, { x: 'Vacio', y: 10 }]} xName='x' yName='y' innerRadius='90%' >
</AccumulationSeriesDirective>
</AccumulationSeriesCollectionDirective>
</AccumulationChartComponent>;
It is rendering:
How can I place a Label inside the chart?
EJ:
Many Thanks