angularでsvg要素を作成しようとしています。現在、ng-repeat を実行できますが、属性に値を割り当てようとするとエラーが発生します。
<g ng-repeat="cell in row">
<rect x="{{cell.node.x}}" y="{{cell.node.y}}"></rect>
<text x="10" y="10">{{cell.node.name}}</text>
</g>
十分に興味深い cell.node.name は機能し、名前はうまく表示されますが、cell.node.x と cell.node.y では、それに応じて次のエラーが表示されます エラー: 属性 x="cell.node.x" の値が無効です エラー:属性 y="cell.node.y" の無効な値