Open PatrikHampel opened 5 months ago
When I resize the container, the height of the chart is not getting updated. I see that in the resize callback only the width is being updated. Is that intentional?
d3.select(window).on(`resize.${attrs.id}`, () => { const containerRect = d3.select(attrs.container).node().getBoundingClientRect(); attrs.svg.attr('width', containerRect.width) });
Yes, it's intentional
When I resize the container, the height of the chart is not getting updated. I see that in the resize callback only the width is being updated. Is that intentional?