react-bar-chart icon indicating copy to clipboard operation
react-bar-chart copied to clipboard

How can I make multiple colored bars?

Open whyjay17 opened this issue 7 years ago • 0 comments


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?

whyjay17 avatar Aug 23 '18 15:08 whyjay17