我在 HTML 中有 SVG 行并想更改结束坐标。
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" >
<line id="myline" x1="0" y1="0" x2="200" y2="200"
style="stroke:rgb(255,0,0);stroke-width:2"/>
</svg>
在 Dart 代码中,我有以下内容:
LineElement line = query("#myline");
我需要将 x2 从 200 更改为 220,但我没有看到线的 x2 属性。有可能这样做吗?