0
我正在研究d3.js樹,以根據元素類型顯示樹中的XML Schema元素。d3.js基於數據值附加不同的SVG元素
我有這樣的代碼如下:
// Enter any new modes at the parent's previous position.
var nodeEnter = node.enter().append('g')
.attr('class', 'node')
.attr("transform", function(d) {
return "translate(" + source.y0 + "," + source.x0 + ")";
})
.on('click', clickXSD)
.on('dblclick', dblclickXSD);
nodeEnter.append('rect')
.filter(function(d) { return d.data.elementType == "xs:element" })
.attr('class', 'node')
.attr('y', -16)
.attr('rx', 5)
.attr('ry', 5)
.attr('width', function(d) { return d.data.y_size + 50; })
.attr('height', function(d) { return 32; })
.style("fill", function(d) {
return d._children ? "lightsteelblue" : "lemonchiffon";
});
我希望能夠通過實施類似使代碼乾淨了一點:
nodeEnter.xs-element()
.filter(function(d) { return d.data.elementType == "xs:element" })
或類似的東西,然後有一個函數繪製xs:元素,然後繪製xs:屬性等。