Forum Discussion
ConnectedRoman
9 years agoFrequent Visitor
Image leaves behind artifacts when resized
Hello, I have finally succeeded in creating a working custom visual. I have also successfully added an image to the visual: let image = this.svg.append("svg:image")
.attr('x', 15)...
- 9 years ago
That's because 'svg:image' is not a valid selector.
d3.selectAll('svg > image').remove();
v-chuncz-msft
9 years agoCommunity Support
That's because 'svg:image' is not a valid selector.
d3.selectAll('svg > image').remove();ConnectedRoman
9 years agoFrequent Visitor
That worked, thank you for bearing with my noobines.