我试图在用户点击按钮时动态添加自定义元素,这将通过D3.js代码呈现SVG多维数据集。
我已经向一个按钮元素添加了一个ng-click指令,该按钮元素调用一个函数来动态附加一个自定义的多维数据集元素,然后我调用$ rootScope。$ apply()以便'应用&# 39;自定义指令,但这不起作用。
这里是完整的代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AngularJS, directives, and D3.js</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.4/angular.js">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
</head>
<body ng-app="myapp" ng-controller="MyController as svgc">
<button ng-click="svgc.addCube()">Add a Cube</button><br/>
<cube></cube>
<script>
var myapp = angular.module('myapp', []);
myapp.controller("MyController", function($rootScope) {
var svgc = this;
svgc.addCube = function() {
//var cube = angular.element('cube');
var cube = document.createElement('cube');
document.body.appendChild(cube);
$rootScope.$apply();
}
});
myapp.directive('cube', function() {
function link(scope, el, attr) {
// d3.select(el[0]).append('svg');
el = el[0];
// CUSTOM CODE FOR RENDERING A CUBE
var width = 300, height = 300;
var points1 = "50,50 200,50 240,30 90,30";
var points2 = "200,50 200,200 240,180 240,30";
var fillColors = ["red", "yellow", "blue"];
var svg = d3.select(el)
.append("svg")
.attr("width", width)
.attr("height", height);
// top face (parallelogram)
var polygon = svg.append("polygon")
.attr("points", points1)
.attr("fill", fillColors[1])
.attr("stroke", "blue")
.attr("stroke-width", 1);
// front face (rectangle)
svg.append("rect")
.attr("x", 50)
.attr("y", 50)
.attr("width", 150)
.attr("height", 150)
.attr("fill", fillColors[0]);
// right face (parallelogram)
var polygon = svg.append("polygon")
.attr("points", points2)
.attr("fill", fillColors[2])
.attr("stroke", "blue")
.attr("stroke-width", 1);
}
return {
link: link,
restrict: 'E'
}
});
</script>
</body>
</html>
我在stackoverflow上看过使用模板添加自定义元素的示例,但是这种情况需要通过D3动态生成SVG元素,所以我不知道基于模板的解决方案是如何工作的。
我确定解决方案很简单...欢迎提出建议:)
答案 0 :(得分:0)
我摆弄了代码并提出了这个解决方案:
public void SaveData()
{
//Save Data
//Print a success message in Window's Textbox
}