Results 1 comments of Seth

I ran into the same issue, ended up appending zero-width spaces (\u200B) ```js const mySeries = myData.map((data, index) => ({ name: `${data.name}${'\u200B'.repeat(index)}`, ... // rest of series info }) ```...