The problem seems to be causing the item #yearly-bubble-chart-clip > rect. It has a built-in styles that are installed widthand heightin auto. In Chrome, this overrides attributes widthand heightresults in a clipping path of 0pixels by 0pixels.
If you remove these styles, for example, it will work in Chrome.
<rect width="888" height="198" transform="translate(-0, -0)" style="overflow-x:visible;overflow-y:visible;perspective-origin:0px 0px;-webkit-perspective-origin:0px 0px;transform-origin:0px 0px;-webkit-transform-origin:0px 0px;"/>
JSFiddle example
source
share