Teemu Ijäs

Results 2 comments of Teemu Ijäs

**Workaround 1** Calculate the length of the longest label and set `YAxis` `width` according to the result. For example: ``` const longestLabelLength = data .map(c => c.displayName) .reduce((acc, cur) =>...