I want to change the color of the number shown by the label inside the Doughnut chart from devextreme-react/pie-chart library, but I can't.
<PieChart
id="pie"
type="doughnut"
palette="Soft Pastel"
dataSource={opciones}
centerRender={CenterTemplate}
onPointClick={pointClickHandler}
>
<Series
argumentField="campo"
valueField="value">
<HoverStyle color="red" />
<Label
fontColor= "black"
position="inside"
visible={true}
customizeText={customizeLabel}
backgroundColor="none">
</Label>
</Series>
<Legend
margin={0}
horizontalAlignment="right"
verticalAlignment="top"
columnCount={2}
rowCount={15}
/>
<Export enabled={true} />
</PieChart>
Excellent explanation I used it myself