Reputation: 139
I am using Stackedbarchart in recharts.org in react js. Everything is coming fine but because of long list of items the legends are getting way out of the width. So how to break legends into multiple lines within specified width?
Upvotes: 1
Views: 1712
Reputation: 139
<Legend wrapperStyle={{width:510,whiteSpace:"break-spaces"}} />
we need to add our style in wrapperStyle in legend. so whiteSpace property will break into multiple lines if width extended.
Upvotes: 1