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

Bubble text not updated despite change in displayText in data prop

Open riwu opened this issue 7 years ago • 0 comments

Seems like an SVG manipulation issue with bubble-label, I had to add

    props.data.forEach(({ displayText }, index) => {
        ((labels[0] || [])[index] || {}).textContent = displayText;
      });

to the end of update(el, props) in ReactBubbleChartD3.js to fix it.

riwu avatar Jan 13 '18 16:01 riwu