react-bar-chart
react-bar-chart copied to clipboard
How can I make multiple colored bars?
const barData = [
{text: 'Man', value: 500},
{text: 'Woman', value: 300}
];
<BarChart ylabel='($)'
style={tabStyle}
width={500}
height={500}
margin={barMargin}
data={barData}
colorByLabel={true}
/>
I want to make the color of the bar-chart for Man and Woman different, but I don't find a way to make them different. Is it possible to do this?