(width, height)
| 804 | } |
| 805 | |
| 806 | createSVG(width, height) { |
| 807 | const svg = this.element.append("svg").attr("xmlns", "http://www.w3.org/2000/svg") |
| 808 | if ((width) && (height)) |
| 809 | svg.attr("width", width).attr("height", height) |
| 810 | return svg |
| 811 | } |
| 812 | |
| 813 | svgString() { |
| 814 | return this.element.select("svg").node()?.outerHTML || "" |