我正在尝试为某些与学生相关的数据创建数据可视化(下面的示例记录),但是当d3呈现它时,它会通过数据两次并覆盖它,只留下第二次只在屏幕上显示的结果。我在这里使用行计数器,所以我有办法根据有多少个矩形来设置每个矩形的y坐标。而且我认为这在某种程度上搞砸了一些事情。任何帮助如何使数据不会被重复两次将非常感激。
另外,为了重要,这段代码生活在angular.js指令中。
道歉,如果我在这里做一些非常愚蠢的事情
// student records sample...
var studentData = [
{
"studentID" : 1001,
"firstName" : "jill",
"lastName" : "smith",
"workLoadDifficulty" : 16,
"smileStartAngle" : -90,
"smileEndAngle" : 90,
},
{
"studentID" : 1008,
"firstName" : "bob",
"lastName" : "smith",
"workLoadDifficulty" : 99,
"smileStartAngle" : 90,
"smileEndAngle" : -90,
}
];
(function () {
'use strict';
angular.module('learnerApp.directives')
.directive('d3Bars', ['d3', function(d3) {
return {
restrict: 'EA',
scope: {
data: "=",
label: "@",
onClick: "&"
},
link: function(scope, iElement, iAttrs) {
var paddingForShape = 10;
var rowCounter = -1;
var height = 400;
var width = 300;
var svgContainer = d3.select(iElement[0])
.append("svg")
.attr("width", width)
.attr('height', height);
// on window resize, re-render d3 canvas
window.onresize = function() {
return scope.$apply();
};
scope.$watch(function(){
return angular.element(window)[0].innerWidth;
}, function(){
return scope.render(scope.data);
}
);
// watch for data changes and re-render
scope.$watch('studentData', function(newVals, oldVals) {
return scope.render(newVals);
}, true);
// define render function
scope.render = function(data){
// remove all previous items before render
svgContainer.selectAll("*").remove();
var workLoadColor = d3.scale.category10()
.domain([0,100])
.range(['#02FA28', '#73FA87', '#C0FAC9','#FAE4C0', '#FAC775', '#FAA823','#FA9A00','#FA8288', '#FC4750', '#FA0511' ])
var studentRects = svgContainer.selectAll('rect')
.data(studentData, function(d) {
console.log(d.studentID);
console.log('hello');
return "keyVal" + d.studentID;
})
.enter()
.append("rect");
var studentRectAttributes = studentRects
.attr("x", function(d,i) {
return ((i * 50) % width) + paddingForShape;
})
.attr("y", function(d,i) {
var value = ((i * 50) % width)
if (value === 0) {
rowCounter = rowCounter + 1;
}
var value = (rowCounter * 50);
console.log('Y Val: ', i);
console.log(value);
return value;
})
.attr("height", 30)
.attr("width", 40)
.style("fill", function(d) {
return workLoadColor(d.workLoadDifficulty)
});
};
}
};
}]);
}());
答案 0 :(得分:1)
尝试将您的选择器更改为var studentRects = svgContainer.selectAll('rect')
,该<rect>
符合您在enter()
上添加的 scope.$watch(function(){
return angular.element(window)[0].innerWidth;
}, function(){
return scope.render(scope.data);
});
元素
**更新**
除了@Wex给出的关键建议外,我还将代码插入了plunker并使其正常工作。你有一个额外的监视你的范围,删除它解决了问题(你可能想重新访问一些关于进入/退出的d3文档):
{{1}}
此处的Plunker:http://plnkr.co/edit/z0MXkUVFNmMEGJAaz7dw?p=preview
答案 1 :(得分:1)
如果您要执行两次数据连接,则需要指定key
,这样就不会覆盖当前选择中的元素。您可能希望将studentRects
定义更改为:
var studentRects = svgContainer.selectAll('rect')
.data(studentData, function(d) { return d.firstName + ' ' + d.lastName; });
studentRects.enter().append("rect");
请参阅selection.data([values[, key]])
如果未指定键功能,则指定数组中的第一个数据将分配给当前选择中的第一个元素,第二个数据分配给第二个选定元素,依此类推。