0
我想根據數據製作不同顏色矩形的xy圖。 X是天,Y是一天中的小時。它是一個活動圖。如何在自定義指令中添加SVG angularjs標籤?
的index.html
<html>
<body>
<script src="js/angular.js"></script>
<script>
var app = angular.module("app",[]);
app.controller("controller",function($scope){
});
app.directive("graph",function(){
return {
controller:function($scope){
$scope.val=50;
},
templateUrl:"test.html",
scope:{
code:"="
},
restrict:"E"
}
});
</script>
<div ng-app="app" ng-controller="controller">
<graph></graph>
</div>
</body>
</html>
的test.html
<svg>
<rect x="0" x="0" ng-attr-width="{{val}}" ngheight="50"></rect>
</svg>
ty @miensol您的回覆。我嘗試從頭開始,它的工作!文檔在angularjs.org上。 ng-attr-x工作! [截圖](http://pic.twitter.com/Un2x7bg6rq) – Montu 2014-09-03 07:52:47