I want to change the color of title in patternfly donut chart. It currently looks like this
How do I add the style property to ChartDonutUtilization component? I tried to add the style property to the component this way
<ChartDonutUtilization
ariaDesc="User progress"
ariaTitle="User progress"
constrainToVisibleArea={true}
data={{ x: 'Completed', y: 75 }}
labels={({ datum }) =>
datum.x ? `${datum.x}: ${datum.y}%` : null
}
subTitle="in progress"
title="75%"
style={title: {color: "#fff"}}
/>
but I'm getting parsing error on this.